POST api/lookup/ManifestStatuses/All

Request Information

URI Parameters

None.

Body Parameters

SingleValueDtoOfBoolean
NameDescriptionTypeAdditional information
Value

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Value": true
}

application/xml, text/xml

Sample:
<SingleValueDtoOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MayaserSolutions.Domain">
  <Value>true</Value>
</SingleValueDtoOfboolean>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of 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
  },
  {
    "Title": "sample string 1",
    "IsAllowedToCourier": true,
    "IsActive": true,
    "IsSystemStatus": true,
    "Id": 5
  }
]

application/xml, text/xml

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