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": "c5c02ce8-8427-4d88-aa55-3137298c05bd",
  "integrationId": "d5bd2090-0a67-481e-96b0-0d35b4cf2d99",
  "key": "sample string 3",
  "value": "sample string 4",
  "description": "sample string 5",
  "dataTypeLookupKey": "sample string 6",
  "createdDateUtc": "2026-02-06T12:48:16.2621726+00:00",
  "updatedDateUtc": "2026-02-06T12:48:16.2621726+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>2026-02-06T12:48:16.2621726+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-02-06T12:48:16.2621726+00:00</UpdatedDateUtc>
  <DataTypeLookupKey>sample string 6</DataTypeLookupKey>
  <Description>sample string 5</Description>
  <IntegrationId>d5bd2090-0a67-481e-96b0-0d35b4cf2d99</IntegrationId>
  <IntegrationSettingId>c5c02ce8-8427-4d88-aa55-3137298c05bd</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'.