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": "cf19fb1a-832f-479c-b259-72e6ca9d747a",
  "tenantId": "9ab28c05-2513-4fe5-bdb2-96fb1f3dd4c3",
  "applicationId": "e0598a88-70c0-4a8d-ac56-9d57ce9520e1",
  "integrationTypeId": "f2f5cf9d-848b-43c0-b0db-3ec073064be1",
  "integrationTypeLookupKey": "sample string 5",
  "name": "sample string 6",
  "description": "sample string 7",
  "createdDateUtc": "2026-05-29T19:53:26.6812637+00:00",
  "updatedDateUtc": "2026-05-29T19:53:26.6812637+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>2026-05-29T19:53:26.6812637+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-05-29T19:53:26.6812637+00:00</UpdatedDateUtc>
  <ApplicationId>e0598a88-70c0-4a8d-ac56-9d57ce9520e1</ApplicationId>
  <Description>sample string 7</Description>
  <IntegrationId>cf19fb1a-832f-479c-b259-72e6ca9d747a</IntegrationId>
  <IntegrationTypeId>f2f5cf9d-848b-43c0-b0db-3ec073064be1</IntegrationTypeId>
  <IntegrationTypeLookupKey>sample string 5</IntegrationTypeLookupKey>
  <Name>sample string 6</Name>
  <TenantId>9ab28c05-2513-4fe5-bdb2-96fb1f3dd4c3</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'.