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": "d9feae21-c1e4-4b1a-816f-90378f27544e",
  "integrationId": "9b7e84a2-132a-490e-a8ba-b6b4b5980e1e",
  "key": "sample string 3",
  "value": "sample string 4",
  "description": "sample string 5",
  "dataTypeLookupKey": "sample string 6",
  "createdDateUtc": "2025-11-17T19:40:31.4288246+00:00",
  "updatedDateUtc": "2025-11-17T19:40:31.4288246+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-11-17T19:40:31.4288246+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-11-17T19:40:31.4288246+00:00</UpdatedDateUtc>
  <DataTypeLookupKey>sample string 6</DataTypeLookupKey>
  <Description>sample string 5</Description>
  <IntegrationId>9b7e84a2-132a-490e-a8ba-b6b4b5980e1e</IntegrationId>
  <IntegrationSettingId>d9feae21-c1e4-4b1a-816f-90378f27544e</IntegrationSettingId>
  <Key>sample string 3</Key>
  <Value>sample string 4</Value>
</IntegrationSettingRepresentation>

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 'IntegrationSettingRepresentation'.