POST api/BxDraftBillPaymentMethodDepositAdd

Request Information

URI Parameters

None.

Body Parameters

DraftBillAddDepositPostData
NameDescriptionTypeAdditional 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-08-02T04:20:24.4631998-05:00",
  "bankPosDepositDestinationId": 7
}

Response Information

Resource Description

DraftBillAddDepositPostResult
NameDescriptionTypeAdditional 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
  }
}