POST api/PaymentTerm/GetPaymentTermById/{PaymentTermId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PaymentTermId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PaymentTermVM| Name | Description | Type | Additional information |
|---|---|---|---|
| PaymentTermId | integer |
None. |
|
| PaymentTerm | string |
None. |
|
| IsActive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"paymentTermId": 1,
"paymentTerm": "sample string 2",
"isActive": true
}
application/xml, text/xml
Sample:
<PaymentTermVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IMS.VM"> <IsActive>true</IsActive> <PaymentTerm>sample string 2</PaymentTerm> <PaymentTermId>1</PaymentTermId> </PaymentTermVM>