POST api/MasterVendor/AddClientOrderSLAMapping

API to store Client Order SLA Mapping

Request Information

URI Parameters

None.

Body Parameters

ClientOrderSLAConfiguration
NameDescriptionTypeAdditional information
Id

integer

None.

ClientCode

string

None.

OrderType

string

None.

ExpiaryLimitInHours

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "ClientCode": "sample string 2",
  "OrderType": "sample string 3",
  "ExpiaryLimitInHours": 4
}

text/xml

Sample:
<ClientOrderSLAConfiguration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models">
  <ClientCode>sample string 2</ClientCode>
  <ExpiaryLimitInHours>4</ExpiaryLimitInHours>
  <Id>1</Id>
  <OrderType>sample string 3</OrderType>
</ClientOrderSLAConfiguration>

multipart/form-data

Sample:
<ClientOrderSLAConfiguration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models"><ClientCode>sample string 2</ClientCode><ExpiaryLimitInHours>4</ExpiaryLimitInHours><Id>1</Id><OrderType>sample string 3</OrderType></ClientOrderSLAConfiguration>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

text/xml, multipart/form-data

Sample:
<long xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</long>