GET
/
customers
/
{customerId}
/
application-meta
Get customer onboarding metadata
curl --request GET \
  --url https://api.next.orenda.finance/customers/{customerId}/application-meta \
  --header 'Authorization: Bearer <token>'
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.next.orenda.finance/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/customers/{customerId}/application-meta"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "success": true,
  "data": {
    "accountOnboardingType": "SINGLE",
    "onboardingStatus": "COMPLETED"
  }
}
{
"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

Authorization
string
header
required

The back-office user's access token.

Path Parameters

customerId
string<uuid>
required

The customer's ID.

Query Parameters

programId
string
required

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.

success
boolean
Example:

true