➕ Create a new payment

In order to create a new mexican payment receipt, you need to use the /payments endpoint with the proper parameters. Remember to generate the document first, as you will need the document_id as a required parameter.

Endpoint: https://api-billing.koywe.com/V1/payments

  • Method: POST
  • Required headers:
    • Content-Type: application/json
    • Authorization: Bearer <token>
    • Accept: */*
1{
2"payment_date": "2025-01-02",
3"document_id": "127",
4"payment_type_id" : "1",
5"payment_amount" : "10000",
6"payment_details" : "",
7"cash_account_id" : "1"
8}