List All Payment Requests
Overview
Returns all past and in-flight payment withdrawal requests, including current states (requested, completed, archived, refunded), references, and amounts.
HTTP Request
GET /banking/ibans/v2/profile/v2.1/request
Authentication
This endpoint requires an active Bearer JWT token in the Authorization header obtained via POST /banking/ibans/v2/users/login:
Authorization: Bearer <your_access_token>
Code Examples
- cURL
- JavaScript (Axios)
- Python (Requests)
curl -X GET "https://api.ahrvo.network/banking/ibans/v2/profile/v2.1/request" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <your_access_token>"
import axios from 'axios';
const response = await axios.get('https://api.ahrvo.network/banking/ibans/v2/profile/v2.1/request', {
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer <your_access_token>'
}
});
console.log(response.data);
import requests
url = "https://api.ahrvo.network/banking/ibans/v2/profile/v2.1/request"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer <your_access_token>"
}
response = requests.get(url, headers=headers)
print(response.json())
Response (200)
{
"success": true,
"data": [
{
"id": 416,
"amount": "100.00",
"reference": "TO-16062022-007",
"state": "requested",
"currency": "INR",
"clientReference": "Payment-100",
"account": {
"id": 285,
"accountNumber": "2000293918130",
"bankName": "PUNJAB NATIONAL BANK",
"beneficiaryAddress": "INSTITUTIONAL AREA, PLOT, NO.05 PNB SWIFT CENTRE - FLOOR 1 GURUGRAM - SECTOR 32",
"beneficiaryCity": "HARYANA",
"beneficiaryCompanyName": "OLSEN INDUSTRIA E COMERCIO SA",
"beneficiaryCountryCode": "IN",
"beneficiaryEntityType": "company",
"country": "India",
"reference": "RP-16062022-001",
"beneficiaryFirstName": "",
"beneficiaryLastName": "",
"nationalId": "PUNB0644100",
"currency": "INR",
"clientReference": "Test-Bene100",
"status": "approved"
}
}
],
"metaData": {
"total": 1,
"current_page": "1",
"page_size": "10"
}
}
Interactive API Explorer
Test this endpoint live against the Ahrvo gateway and Verto sandbox environments: