Get verify status
curl --request GET \
--url https://api.next.orenda.finance/v1/batch-payments/verify/{requestId} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.next.orenda.finance/v1/batch-payments/verify/{requestId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.next.orenda.finance/v1/batch-payments/verify/{requestId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": false,
"error_code": "VERIFICATION_PROCESSING",
"message": "Verification is still being processed. Please try again later.",
"status": "PROCESSING"
}Batch payments
Get verify status
Poll this after a verify until status is no longer PROCESSING. The result lists each item as valid or invalid (with errors) and the account balances available to cover the batch.
GET
/
v1
/
batch-payments
/
verify
/
{requestId}
Get verify status
curl --request GET \
--url https://api.next.orenda.finance/v1/batch-payments/verify/{requestId} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.next.orenda.finance/v1/batch-payments/verify/{requestId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.next.orenda.finance/v1/batch-payments/verify/{requestId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": false,
"error_code": "VERIFICATION_PROCESSING",
"message": "Verification is still being processed. Please try again later.",
"status": "PROCESSING"
}⌘I