Invoice Payment

Create

Create a new Invoice Payment record.

post/api/cp/invoice-payment

Request body

idinteger

Id

invoice_idinteger

Invoice Id (references invoice.id)

payment_idinteger

Payment Id (references payment.id)

totalnumber

Total

Example request

{
  "id": 12345,
  "invoice_id": 1,
  "payment_id": 1,
  "total": 10
}

Response

Successful response

statusstring

Operation status

Example response

{
  "id": 12345,
  "status": "OK"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.