GET api/DeliveryManagement/GetDeliveryLocationForDDL

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ResponseDeliveryLocationDDL
NameDescriptionTypeAdditional information
success

string

None.

error_message

string

None.

data

Collection of DeliveryLocationDDL

None.

Response Formats

application/json, text/json

Sample:
{
  "success": "sample string 1",
  "error_message": "sample string 2",
  "data": [
    {
      "organization_id": 1,
      "organization_name": "sample string 2"
    },
    {
      "organization_id": 1,
      "organization_name": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<ResponseDeliveryLocationDDL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PartnerNetwork.Models">
  <data>
    <DeliveryLocationDDL>
      <organization_id>1</organization_id>
      <organization_name>sample string 2</organization_name>
    </DeliveryLocationDDL>
    <DeliveryLocationDDL>
      <organization_id>1</organization_id>
      <organization_name>sample string 2</organization_name>
    </DeliveryLocationDDL>
  </data>
  <error_message>sample string 2</error_message>
  <success>sample string 1</success>
</ResponseDeliveryLocationDDL>