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": "82dd35f7-d60f-4a81-ade1-28af9186c0ec",
  "integrationId": "e6d62db4-ce57-4cc7-9b9f-7a3c861604ee",
  "key": "sample string 3",
  "value": "sample string 4",
  "description": "sample string 5",
  "dataTypeLookupKey": "sample string 6",
  "createdDateUtc": "2026-02-01T08:30:24.9976245+00:00",
  "updatedDateUtc": "2026-02-01T08:30:24.9976245+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-01T08:30:24.9976245+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-02-01T08:30:24.9976245+00:00</UpdatedDateUtc>
  <DataTypeLookupKey>sample string 6</DataTypeLookupKey>
  <Description>sample string 5</Description>
  <IntegrationId>e6d62db4-ce57-4cc7-9b9f-7a3c861604ee</IntegrationId>
  <IntegrationSettingId>82dd35f7-d60f-4a81-ade1-28af9186c0ec</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'.