GET api/Adjustment/GetReasonListByAdjustmentTypeID?adjustmentTypeID={adjustmentTypeID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| adjustmentTypeID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AdjustmentReasonForList| Name | Description | Type | Additional information |
|---|---|---|---|
| AdjustmentReasonID | integer |
None. |
|
| AdjustmentReason | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"AdjustmentReasonID": 1,
"AdjustmentReason": "sample string 2"
},
{
"AdjustmentReasonID": 1,
"AdjustmentReason": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfAdjustmentReasonForList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.AdjustmentReason">
<AdjustmentReasonForList>
<AdjustmentReason>sample string 2</AdjustmentReason>
<AdjustmentReasonID>1</AdjustmentReasonID>
</AdjustmentReasonForList>
<AdjustmentReasonForList>
<AdjustmentReason>sample string 2</AdjustmentReason>
<AdjustmentReasonID>1</AdjustmentReasonID>
</AdjustmentReasonForList>
</ArrayOfAdjustmentReasonForList>