v1
latestOpenAPI 3.0.12026-07-263591116.9 KBPayment V2
List of payments
get/v2/payment/list
Query parameters
start_datestring required
Start date for the list, [DD-MM-YYY]
end_datestring required
End date for the list, [DD-MM-YYY]
statusstring required
Filter list based on active status of the payment
num_recordsinteger
Number of records to fetch
pageinteger
Page number
Response
Payment details fetched successfully
Example response
{
"success": true,
"message": "Subscription List fetched successfully",
"data": {
"transactions": [
{
"total_amount": 1000,
"amount_remaining": "900",
"bank_details": {
"account_number": "1234567890",
"ifsc": "SBIN0000001",
"bank_name": "State Bank of India",
"branch": "Mumbai"
},
"customer": {
"id": "CUST123",
"name": "John Doe",
"country_code": "91",
"phone_number": "1234567890",
"email": "johndoe@example.com"
},
"payment_date": "11-06-2024",
"linked_docs": [
{
"amount_settled": 100,
"serial_number": "INV-12",
"document_type": "invoice"
}
],
"payment_mode": "Cash",
"payment_type": "in",
"status": "success",
"created_by": "Manoj"
}
],
"total_records": 10
}
}