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": "1549c391-55ab-4b3b-849e-90e86eb07de5",
  "tenantId": "23d0c785-e49b-4015-838d-1be6d79ea811",
  "applicationId": "07e3846b-b791-484f-8540-895d3f69fa94",
  "integrationTypeId": "eea5ebc3-dd74-45f2-b1b9-b5a8b49e32c4",
  "integrationTypeLookupKey": "sample string 5",
  "name": "sample string 6",
  "description": "sample string 7",
  "createdDateUtc": "2025-11-15T11:39:55.9097321+00:00",
  "updatedDateUtc": "2025-11-15T11:39:55.9097321+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-11-15T11:39:55.9097321+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-11-15T11:39:55.9097321+00:00</UpdatedDateUtc>
  <ApplicationId>07e3846b-b791-484f-8540-895d3f69fa94</ApplicationId>
  <Description>sample string 7</Description>
  <IntegrationId>1549c391-55ab-4b3b-849e-90e86eb07de5</IntegrationId>
  <IntegrationTypeId>eea5ebc3-dd74-45f2-b1b9-b5a8b49e32c4</IntegrationTypeId>
  <IntegrationTypeLookupKey>sample string 5</IntegrationTypeLookupKey>
  <Name>sample string 6</Name>
  <TenantId>23d0c785-e49b-4015-838d-1be6d79ea811</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'.