GET api/v1/DeliveryStatus/AllDeliveryStatus

Query delivery status indicators.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

DeliveryStatusObjs
NameDescriptionTypeAdditional information
statuses

Collection of api_GetDeliveryStatus_Result

None.

Response Formats

application/json, text/json

Sample:
{
  "statuses": [
    {
      "deliverystatusid": 1,
      "deliverystatusname": "sample string 2"
    },
    {
      "deliverystatusid": 1,
      "deliverystatusname": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<DeliveryStatusObjs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/nfuels_api.Controllers">
  <statuses xmlns:d2p1="http://schemas.datacontract.org/2004/07/NFuels_Database.database.portal">
    <d2p1:api_GetDeliveryStatus_Result>
      <d2p1:deliverystatusid>1</d2p1:deliverystatusid>
      <d2p1:deliverystatusname>sample string 2</d2p1:deliverystatusname>
    </d2p1:api_GetDeliveryStatus_Result>
    <d2p1:api_GetDeliveryStatus_Result>
      <d2p1:deliverystatusid>1</d2p1:deliverystatusid>
      <d2p1:deliverystatusname>sample string 2</d2p1:deliverystatusname>
    </d2p1:api_GetDeliveryStatus_Result>
  </statuses>
</DeliveryStatusObjs>