Cyan Web API - Version 1


POST api/integrationSettings

            Creates an IntegrationSetting.
            

Request Information

Parameters

NameDescriptionAdditional information
integrationSettingRepresentation

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "integrationSettingId": "0e95ad0a-f085-4795-80a0-215db9aeeaec",
  "integrationId": "8b32e573-bd03-44ef-90b8-37491fc60fb8",
  "key": "sample string 3",
  "value": "sample string 4",
  "description": "sample string 5",
  "dataTypeLookupKey": "sample string 6",
  "createdDateUtc": "2025-06-02T02:02:18.8606552+00:00",
  "updatedDateUtc": "2025-06-02T02:02:18.8606552+00:00"
}

application/xml, text/xml

Sample:
<IntegrationSettingRepresentation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlueDot.Cyan.Server.Core.Models.Rest.Version1">
  <CreatedDateUtc>2025-06-02T02:02:18.8606552+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-06-02T02:02:18.8606552+00:00</UpdatedDateUtc>
  <DataTypeLookupKey>sample string 6</DataTypeLookupKey>
  <Description>sample string 5</Description>
  <IntegrationId>8b32e573-bd03-44ef-90b8-37491fc60fb8</IntegrationId>
  <IntegrationSettingId>0e95ad0a-f085-4795-80a0-215db9aeeaec</IntegrationSettingId>
  <Key>sample string 3</Key>
  <Value>sample string 4</Value>
</IntegrationSettingRepresentation>

application/x-www-form-urlencoded

Sample:

Sample not available.