Enkash Developer Portal
Home
Home
Login
  1. Bharat Connect 2.0 AR
  • Back to home
  • Account Receivable APIs
  • Get Authentication Token Copy
    • Get Authentication Token
  • Customer Management
    • Customer Apis
      • Activate customer
      • createBulkCustomer
      • bulkUpdate
      • Deactivate customer
      • deleteCustomerByCustomerId
      • updateCustomer
  • Customer Contacts Management
    • Customer Apis
      • getCustomerContactDetails
  • Invoice Management
    • invoice-controller
      • createInvoice
      • invoiceBulkUpload
      • Dispatch Invoice Collection
      • Delete Invoice Collection
      • searchCollectionInvoices
      • getInvoice
      • updateInvoice
  • Payment Reminders
    • customer-reminder-controller
      • createCustomerReminder
      • getCustomerReminders
      • getCustomerReminder
      • deleteReminder
      • updateCustomerReminder
  • Bharat Connect 2.0 AR
    • Payment Confirmation Request
      POST
    • Change Invoice Status Request
      POST
    • Bulk Create Invoice
      POST
  1. Bharat Connect 2.0 AR

Payment Confirmation Request

Developing
POST
/api/v0/invoice/payment-confirmation

Request

Body Params application/json
invoiceIds
array[string]
required
paymentId
string 
required
remarks
string 
required
response
string 
required
type
string 
required
Example
{
    "invoiceIds": [
        "string"
    ],
    "paymentId": "string",
    "remarks": "string",
    "response": "string",
    "type": "string"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v0/invoice/payment-confirmation' \
--header 'Content-Type: application/json' \
--data-raw '{
    "invoiceIds": [
        "string"
    ],
    "paymentId": "string",
    "remarks": "string",
    "response": "string",
    "type": "string"
}'

Responses

🟢200Success
application/json
Body
response_code
integer 
required
response_message
string 
required
payload
string 
required
Example
{
  "response_code": 0,
  "response_message": "SUCCESS",
  "payload": "string"
}
Modified at 2025-07-07 18:44:33
Previous
updateCustomerReminder
Next
Change Invoice Status Request
Built with