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": "e1d0585a-9a93-471b-93eb-e676646ada1e",
  "tenantId": "116a371a-f43f-4a96-a3f3-3f2b59f0a3ac",
  "applicationId": "1184d7d2-7287-4c40-a2c3-4e91a8e0b5b4",
  "integrationTypeId": "8a980e2b-38b9-47e6-8e6c-038b2bc01fd5",
  "integrationTypeLookupKey": "sample string 5",
  "name": "sample string 6",
  "description": "sample string 7",
  "createdDateUtc": "2026-06-07T21:09:03.0619357+00:00",
  "updatedDateUtc": "2026-06-07T21:09:03.0619357+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-06-07T21:09:03.0619357+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-06-07T21:09:03.0619357+00:00</UpdatedDateUtc>
  <ApplicationId>1184d7d2-7287-4c40-a2c3-4e91a8e0b5b4</ApplicationId>
  <Description>sample string 7</Description>
  <IntegrationId>e1d0585a-9a93-471b-93eb-e676646ada1e</IntegrationId>
  <IntegrationTypeId>8a980e2b-38b9-47e6-8e6c-038b2bc01fd5</IntegrationTypeId>
  <IntegrationTypeLookupKey>sample string 5</IntegrationTypeLookupKey>
  <Name>sample string 6</Name>
  <TenantId>116a371a-f43f-4a96-a3f3-3f2b59f0a3ac</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'.