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": "5d7abe0d-ef2d-4b11-b59a-3f01fcd0ff8e",
  "tenantId": "aa3426c7-6891-4a5d-b73c-333300301b2f",
  "applicationId": "8330a451-f50e-46ae-9e9d-d8c7ce58c457",
  "integrationTypeId": "7f7b7b32-d3f0-4d20-a98b-65929f2143e5",
  "integrationTypeLookupKey": "sample string 5",
  "name": "sample string 6",
  "description": "sample string 7",
  "createdDateUtc": "2026-08-27T04:31:17.6703237+00:00",
  "updatedDateUtc": "2026-08-27T04:31:17.6703237+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-08-27T04:31:17.6703237+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-08-27T04:31:17.6703237+00:00</UpdatedDateUtc>
  <ApplicationId>8330a451-f50e-46ae-9e9d-d8c7ce58c457</ApplicationId>
  <Description>sample string 7</Description>
  <IntegrationId>5d7abe0d-ef2d-4b11-b59a-3f01fcd0ff8e</IntegrationId>
  <IntegrationTypeId>7f7b7b32-d3f0-4d20-a98b-65929f2143e5</IntegrationTypeId>
  <IntegrationTypeLookupKey>sample string 5</IntegrationTypeLookupKey>
  <Name>sample string 6</Name>
  <TenantId>aa3426c7-6891-4a5d-b73c-333300301b2f</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'.