POST api/lookup/ManifestStatus/Create

Request Information

URI Parameters

None.

Body Parameters

ManifestStatusDto
NameDescriptionTypeAdditional information
Title

string

Required

IsAllowedToCourier

boolean

None.

IsActive

boolean

None.

IsSystemStatus

boolean

None.

Id

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Title": "sample string 1",
  "IsAllowedToCourier": true,
  "IsActive": true,
  "IsSystemStatus": true,
  "Id": 5
}

application/xml, text/xml

Sample:
<ManifestStatusDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MayaserSolutions.Domain">
  <Id>5</Id>
  <IsActive>true</IsActive>
  <IsAllowedToCourier>true</IsAllowedToCourier>
  <IsSystemStatus>true</IsSystemStatus>
  <Title>sample string 1</Title>
</ManifestStatusDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ManifestStatusDto
NameDescriptionTypeAdditional information
Title

string

Required

IsAllowedToCourier

boolean

None.

IsActive

boolean

None.

IsSystemStatus

boolean

None.

Id

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Title": "sample string 1",
  "IsAllowedToCourier": true,
  "IsActive": true,
  "IsSystemStatus": true,
  "Id": 5
}

application/xml, text/xml

Sample:
<ManifestStatusDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MayaserSolutions.Domain">
  <Id>5</Id>
  <IsActive>true</IsActive>
  <IsAllowedToCourier>true</IsAllowedToCourier>
  <IsSystemStatus>true</IsSystemStatus>
  <Title>sample string 1</Title>
</ManifestStatusDto>