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": "9e3c9a65-bd93-4cc6-9cf6-e7ba9f885c65",
  "integrationId": "bdaee7ca-12f2-4866-8ac5-ed4971d07afa",
  "key": "sample string 3",
  "value": "sample string 4",
  "description": "sample string 5",
  "dataTypeLookupKey": "sample string 6",
  "createdDateUtc": "2024-08-30T01:03:08.2717473+00:00",
  "updatedDateUtc": "2024-08-30T01:03:08.2717473+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>2024-08-30T01:03:08.2717473+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2024-08-30T01:03:08.2717473+00:00</UpdatedDateUtc>
  <DataTypeLookupKey>sample string 6</DataTypeLookupKey>
  <Description>sample string 5</Description>
  <IntegrationId>bdaee7ca-12f2-4866-8ac5-ed4971d07afa</IntegrationId>
  <IntegrationSettingId>9e3c9a65-bd93-4cc6-9cf6-e7ba9f885c65</IntegrationSettingId>
  <Key>sample string 3</Key>
  <Value>sample string 4</Value>
</IntegrationSettingRepresentation>

application/x-www-form-urlencoded

Sample:

Sample not available.