POST api/BxDraftBillPaymentMethodDepositAdd
Request Information
URI Parameters
None.
Body Parameters
DraftBillAddDepositPostData| Name | Description | Type | Additional information |
|---|---|---|---|
| DraftBillId | integer |
None. |
|
| PaymentMethodId | integer |
None. |
|
| NewDraftBillPaymentMethodValue | decimal number |
None. |
|
| NewDraftBillPaymentMethodDescription | string |
None. |
|
| NewDraftBillPaymentMethodBankPosDepositDocumentNumber | string |
None. |
|
| NewDraftBillPaymentMethodBankPosDepositDate | date |
None. |
|
| BankPosDepositDestinationId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"draftBillId": 1,
"paymentMethodId": 2,
"newDraftBillPaymentMethodValue": 3.0,
"newDraftBillPaymentMethodDescription": "sample string 4",
"newDraftBillPaymentMethodBankPosDepositDocumentNumber": "sample string 5",
"newDraftBillPaymentMethodBankPosDepositDate": "2025-12-12T22:31:08.9822364-05:00",
"bankPosDepositDestinationId": 7
}
Response Information
Resource Description
DraftBillAddDepositPostResult| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | DraftBillAddDepositPostExceptionType |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseData | DraftBillAddDepositResponseData |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseCode": 0,
"responseMessage": "sample string 1",
"responseData": {
"draftBillPaymentMethodId": 1
}
}