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"
}

Authorizations

Authorization
string
header
required

The user's access_token. The program and environment come from the token.

Path Parameters

requestId
string
required

The requestId returned by verify.

Response

Validation result (or still processing)

The response is of type object.