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": "5cf37f7c-c1a2-4fd0-a067-21078eb4f1a9",
  "tenantId": "0dd21c6c-1892-4c98-8387-849786a70017",
  "applicationId": "51b8d08c-c751-49d0-8a99-9a2db640a2cc",
  "integrationTypeId": "8c48dff7-bf26-418b-8b1c-760b39aea7ce",
  "integrationTypeLookupKey": "sample string 5",
  "name": "sample string 6",
  "description": "sample string 7",
  "createdDateUtc": "2026-02-06T03:15:48.5571405+00:00",
  "updatedDateUtc": "2026-02-06T03:15:48.5571405+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-06T03:15:48.5571405+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-02-06T03:15:48.5571405+00:00</UpdatedDateUtc>
  <ApplicationId>51b8d08c-c751-49d0-8a99-9a2db640a2cc</ApplicationId>
  <Description>sample string 7</Description>
  <IntegrationId>5cf37f7c-c1a2-4fd0-a067-21078eb4f1a9</IntegrationId>
  <IntegrationTypeId>8c48dff7-bf26-418b-8b1c-760b39aea7ce</IntegrationTypeId>
  <IntegrationTypeLookupKey>sample string 5</IntegrationTypeLookupKey>
  <Name>sample string 6</Name>
  <TenantId>0dd21c6c-1892-4c98-8387-849786a70017</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'.