Cyan Web API - Version 1


GET api/integrations/{integrationId}

            Gets a single Integration.
            

Request Information

Parameters

NameDescriptionAdditional information
integrationId
The integrationId to locate.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "integrationId": "f22e642d-a627-48b1-9a7b-77548a9ffb85",
  "tenantId": "20da91b1-a98f-4d64-923e-7f883e99bcaa",
  "applicationId": "aee6bb2b-9eeb-401a-861b-5ff9505d94b4",
  "integrationTypeId": "60a0cd10-cb78-45a9-9c35-a27b420e626b",
  "integrationTypeLookupKey": "sample string 5",
  "name": "sample string 6",
  "description": "sample string 7",
  "createdDateUtc": "2026-02-12T06:22:45.470306+00:00",
  "updatedDateUtc": "2026-02-12T06:22:45.470306+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-12T06:22:45.470306+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-02-12T06:22:45.470306+00:00</UpdatedDateUtc>
  <ApplicationId>aee6bb2b-9eeb-401a-861b-5ff9505d94b4</ApplicationId>
  <Description>sample string 7</Description>
  <IntegrationId>f22e642d-a627-48b1-9a7b-77548a9ffb85</IntegrationId>
  <IntegrationTypeId>60a0cd10-cb78-45a9-9c35-a27b420e626b</IntegrationTypeId>
  <IntegrationTypeLookupKey>sample string 5</IntegrationTypeLookupKey>
  <Name>sample string 6</Name>
  <TenantId>20da91b1-a98f-4d64-923e-7f883e99bcaa</TenantId>
</IntegrationRepresentation>