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": "bdf3ad7b-5560-4a62-8e3f-12eb22744bea",
  "tenantId": "a8a823e9-796c-4440-82c0-fbd6e7b08031",
  "applicationId": "91718def-f1d0-4384-b915-94a5427ef9f6",
  "integrationTypeId": "2e49916e-4ba3-49ee-940d-b6b471a8c0f5",
  "integrationTypeLookupKey": "sample string 5",
  "name": "sample string 6",
  "description": "sample string 7",
  "createdDateUtc": "2026-08-02T06:43:09.5517741+00:00",
  "updatedDateUtc": "2026-08-02T06:43:09.5517741+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-02T06:43:09.5517741+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-08-02T06:43:09.5517741+00:00</UpdatedDateUtc>
  <ApplicationId>91718def-f1d0-4384-b915-94a5427ef9f6</ApplicationId>
  <Description>sample string 7</Description>
  <IntegrationId>bdf3ad7b-5560-4a62-8e3f-12eb22744bea</IntegrationId>
  <IntegrationTypeId>2e49916e-4ba3-49ee-940d-b6b471a8c0f5</IntegrationTypeId>
  <IntegrationTypeLookupKey>sample string 5</IntegrationTypeLookupKey>
  <Name>sample string 6</Name>
  <TenantId>a8a823e9-796c-4440-82c0-fbd6e7b08031</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'.