1. Send 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. Send payment

Send payment to upi

Developing
POST
https://pay.bottercc.com/api/v1/payout
Initiate a payout to transfer funds directly from your available merchant balance to any user or vendor's UPI ID / Virtual Payment Address (VPA).

Request

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

Example
{
    "amount": 500,
    "upi_id": "receiver@okhdfcbank",
    "name": "Jane Doe",
    "phone": "9876543210",
    "email": "jane@example.com",
    "remarks": "Vendor Commission Payout"
  }

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/payout' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "amount": 500,
    "upi_id": "receiver@okhdfcbank",
    "name": "Jane Doe",
    "phone": "9876543210",
    "email": "jane@example.com",
    "remarks": "Vendor Commission Payout"
  }'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
  "success": true,
  "payout_id": 104,
  "amount": "100.00",
  "fee_percentage": "2.00%",
  "fee_amount": "2.00",
  "total_debited": "102.00",
  "net_payout": "100.00",
  "payout_method": "UPI",
  "recipient": {
    "upi_id": "receiver@okhdfcbank",
    "name": "Jane Doe",
    "phone": "9876543210",
    "remarks": "Vendor Commission"
  },
  "status": "pending",
  "message": "Payout request queued successfully for disbursement."
}
Modified at 2026-08-20 03:58:50
Previous
List invoices
Next
Payout status
Built with