1. Acceppt payment
Documentation: Botter Pay
  • Introduction
  • Acceppt payment
    • Create Invoice
      POST
    • Invoice status
      GET
    • Refund invoce
      POST
    • List invoices
      GET
  • Send payment
    • Send payment to upi
      POST
    • Payout status
      GET
  • Subscription
    • Create subscription
      POST
    • subscription status
      GET
    • cancel subscription
      POST
  • Webhook
    • Webhooks
  1. Acceppt payment

Invoice status

GET
https://pay.bottercc.com/api/v1/invoice/status
Query payment status for an invoice. If status in database is pending, the gateway actively calls PayU's verification engine in real time. If verified as paid, it instantly marks the transaction as success, credits your balance, and dispatches the webhook.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Request Code 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 'https://pay.bottercc.com/api/v1/invoice/status?txnid=INV_1001' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
  "success": true,
  "txnid": "INV_1001",
  "payu_txnid": "INV_1001_u1",
  "status": "success",
  "amount": "499.00",
  "payu_id": "403993715531478",
  "mode": "UPI",
  "bank_ref_num": "422912384912",
  "customer": {
    "name": "John Doe",
    "email": "john@example.com",
    "phone": "9876543210"
  },
  "created_at": "2026-08-19T13:45:00.000Z",
  "updated_at": "2026-08-19T13:46:12.000Z"
}
🟠404
Modified at 2026-08-20 03:43:10
Previous
Create Invoice
Next
Refund invoce
Built with