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": "2cf7aefd-7c3a-4fac-a800-1e56334c3581",
  "tenantId": "158afb8d-286d-4656-bc09-4cd33add31a1",
  "applicationId": "5c2478f2-8b57-4d9b-a9a6-497a0c585571",
  "integrationTypeId": "1e4117ea-e0e6-420d-9ec1-c9d309504285",
  "integrationTypeLookupKey": "sample string 5",
  "name": "sample string 6",
  "description": "sample string 7",
  "createdDateUtc": "2026-03-08T10:51:04.2977194+00:00",
  "updatedDateUtc": "2026-03-08T10:51:04.2977194+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-03-08T10:51:04.2977194+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-03-08T10:51:04.2977194+00:00</UpdatedDateUtc>
  <ApplicationId>5c2478f2-8b57-4d9b-a9a6-497a0c585571</ApplicationId>
  <Description>sample string 7</Description>
  <IntegrationId>2cf7aefd-7c3a-4fac-a800-1e56334c3581</IntegrationId>
  <IntegrationTypeId>1e4117ea-e0e6-420d-9ec1-c9d309504285</IntegrationTypeId>
  <IntegrationTypeLookupKey>sample string 5</IntegrationTypeLookupKey>
  <Name>sample string 6</Name>
  <TenantId>158afb8d-286d-4656-bc09-4cd33add31a1</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'.