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": "32dceb70-23ce-4353-bd34-5aca0cf7cfae",
  "tenantId": "6ca2d186-3f7f-4fd6-acb9-2a3cea9b8668",
  "applicationId": "12c6ab06-82fb-425c-b028-9d33514bbfac",
  "integrationTypeId": "4d43712b-dbf2-42d8-9a58-4b2bac13e0d5",
  "integrationTypeLookupKey": "sample string 5",
  "name": "sample string 6",
  "description": "sample string 7",
  "createdDateUtc": "2026-02-01T08:28:42.0958812+00:00",
  "updatedDateUtc": "2026-02-01T08:28:42.0958812+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-02-01T08:28:42.0958812+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-02-01T08:28:42.0958812+00:00</UpdatedDateUtc>
  <ApplicationId>12c6ab06-82fb-425c-b028-9d33514bbfac</ApplicationId>
  <Description>sample string 7</Description>
  <IntegrationId>32dceb70-23ce-4353-bd34-5aca0cf7cfae</IntegrationId>
  <IntegrationTypeId>4d43712b-dbf2-42d8-9a58-4b2bac13e0d5</IntegrationTypeId>
  <IntegrationTypeLookupKey>sample string 5</IntegrationTypeLookupKey>
  <Name>sample string 6</Name>
  <TenantId>6ca2d186-3f7f-4fd6-acb9-2a3cea9b8668</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'.