Get customer onboarding metadata
curl --request GET \
--url https://api.next.orenda.finance/v1/customers/{customerId}/application-meta \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.next.orenda.finance/v1/customers/{customerId}/application-meta', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.next.orenda.finance/v1/customers/{customerId}/application-meta"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"data": {
"applicationMeta": [
{
"customerId": "c1a2b3c4-5d6e-7f80-91a2-b3c4d5e6f708",
"programId": "orendanext",
"key": "revolupay/status",
"value": "APPROVED",
"createdAt": "2026-05-14T09:12:41.000Z"
}
]
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}Customers
Get customer onboarding metadata
Returns the onboarding / application metadata records held for a customer — the provider-specific keys captured during the customer’s onboarding journey (for example revolupay/active, revolupay/status, provider customer IDs).
Back office only. A non-back-office token is rejected with 422 FORBIDDEN — the handler raises a generic domain error, so this does not surface as 403. Responds 404 when the customer has no metadata records.
GET
/
v1
/
customers
/
{customerId}
/
application-meta
Get customer onboarding metadata
curl --request GET \
--url https://api.next.orenda.finance/v1/customers/{customerId}/application-meta \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.next.orenda.finance/v1/customers/{customerId}/application-meta', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.next.orenda.finance/v1/customers/{customerId}/application-meta"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"data": {
"applicationMeta": [
{
"customerId": "c1a2b3c4-5d6e-7f80-91a2-b3c4d5e6f708",
"programId": "orendanext",
"key": "revolupay/status",
"value": "APPROVED",
"createdAt": "2026-05-14T09:12:41.000Z"
}
]
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "The request could not be processed. Check the request parameters and body and try again."
}
}Authorizations
The back-office user's id_token — the ID token, not the access_token. The API rejects access tokens.
Path Parameters
The customer's ID.
Query Parameters
The program the customer/account belongs to. Required on every request.
Response
Onboarding metadata for the customer.
Standard mutation envelope. Additional fields may be present depending on the operation.
Example:
true
⌘I