GET api/DeliveryManagement/GetTransactionTypesForDDL
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ResponseTransactionTypesDDLName | Description | Type | Additional information |
---|---|---|---|
data | Collection of TransacionTypesDDL |
None. |
|
success | string |
None. |
|
error_message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "data": [ { "transaction_type_id": 1, "transaction_type": "sample string 2" }, { "transaction_type_id": 1, "transaction_type": "sample string 2" } ], "success": "sample string 1", "error_message": "sample string 2" }
application/xml, text/xml
Sample:
<ResponseTransactionTypesDDL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PartnerNetwork.Models"> <error_message>sample string 2</error_message> <success>sample string 1</success> <data> <TransacionTypesDDL> <transaction_type>sample string 2</transaction_type> <transaction_type_id>1</transaction_type_id> </TransacionTypesDDL> <TransacionTypesDDL> <transaction_type>sample string 2</transaction_type> <transaction_type_id>1</transaction_type_id> </TransacionTypesDDL> </data> </ResponseTransactionTypesDDL>