Cyan Web API - Version 1


POST api/integrations

            Creates an Integration resource within a tenant.
            

Request Information

Parameters

NameDescriptionAdditional information
integrationRepresentation

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "integrationId": "1b67b46c-a145-4bb1-9414-7a3befb56020",
  "tenantId": "929d0bd9-6f95-405a-a826-a7e2e47ad4c7",
  "applicationId": "317ff681-e3b4-4053-8573-edd8e918b59f",
  "integrationTypeId": "01b46c6b-4106-4604-ad08-782e607a4a80",
  "integrationTypeLookupKey": "sample string 5",
  "name": "sample string 6",
  "description": "sample string 7",
  "createdDateUtc": "2025-12-14T10:49:14.2936877+00:00",
  "updatedDateUtc": "2025-12-14T10:49:14.2936877+00:00"
}

application/xml, text/xml

Sample:
<IntegrationRepresentation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlueDot.Cyan.Server.Core.Models.Rest.Version1">
  <CreatedDateUtc>2025-12-14T10:49:14.2936877+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-12-14T10:49:14.2936877+00:00</UpdatedDateUtc>
  <ApplicationId>317ff681-e3b4-4053-8573-edd8e918b59f</ApplicationId>
  <Description>sample string 7</Description>
  <IntegrationId>1b67b46c-a145-4bb1-9414-7a3befb56020</IntegrationId>
  <IntegrationTypeId>01b46c6b-4106-4604-ad08-782e607a4a80</IntegrationTypeId>
  <IntegrationTypeLookupKey>sample string 5</IntegrationTypeLookupKey>
  <Name>sample string 6</Name>
  <TenantId>929d0bd9-6f95-405a-a826-a7e2e47ad4c7</TenantId>
</IntegrationRepresentation>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'IntegrationRepresentation'.