For the complete documentation index, see llms.txt. This page is also available as Markdown.

Create Bill Payment

Create or update bill data in Xorosoft ERP. Send the JSON payload using the field names documented in this operation and in the module export/import format used by Xorosoft ERP.

post
Authorizations
AuthorizationstringRequired
Body

Request body for Create Billpayment.

Other propertiesanyOptional
Responses
200

Request processed successfully.

application/json

Standard Xorosoft ERP API response envelope used by most endpoints.

ResultbooleanOptional

True when the operation completed successfully.

MessagestringOptional

Human-readable success or error message.

Pageinteger · nullableOptional

Current page number when paging is enabled.

TotalPagesinteger · nullableOptional

Total page count when paging is enabled.

post/api/xerp/bill/createbillpayment
POST /api/xerp/bill/createbillpayment HTTP/1.1
Host: res.xorosoft.io
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 92

{
  "billHeader": {
    "VendorName": "Example Vendor",
    "BillNumber": "BILL-1001"
  },
  "billItemLineArr": []
}
{
  "Result": true,
  "Message": "Request processed successfully",
  "Data": {}
}

Last updated

Was this helpful?