Retrieve uploaded data and status of customer onboarding
curl --request GET \
--url https://api.anchorage-staging.com/v2/onboarding/customers/{customerId} \
--header 'Api-Access-Key: <api-key>'import requests
url = "https://api.anchorage-staging.com/v2/onboarding/customers/{customerId}"
headers = {"Api-Access-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'Api-Access-Key': '<api-key>'}};
fetch('https://api.anchorage-staging.com/v2/onboarding/customers/{customerId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"customerId": "<string>",
"entries": [
{
"key": "<string>",
"value": "<string>"
}
],
"status": "<string>",
"errors": [
{
"key": "<string>",
"status": "MISSING",
"value": "<string>"
}
]
}
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}Retrieve uploaded data and status of customer onboarding
Permissions required: Onboarding
Get customer onboarding application status, missing information and previously uploaded information.
GET
/
onboarding
/
customers
/
{customerId}
Retrieve uploaded data and status of customer onboarding
curl --request GET \
--url https://api.anchorage-staging.com/v2/onboarding/customers/{customerId} \
--header 'Api-Access-Key: <api-key>'import requests
url = "https://api.anchorage-staging.com/v2/onboarding/customers/{customerId}"
headers = {"Api-Access-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'Api-Access-Key': '<api-key>'}};
fetch('https://api.anchorage-staging.com/v2/onboarding/customers/{customerId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"customerId": "<string>",
"entries": [
{
"key": "<string>",
"value": "<string>"
}
],
"status": "<string>",
"errors": [
{
"key": "<string>",
"status": "MISSING",
"value": "<string>"
}
]
}
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}{
"errorType": "InternalError",
"message": "Missing required field 'amount'."
}Authorizations
An API key associated with a security role
Path Parameters
Customer Id
Response
Customer onboarding application status and errors
Get Onboarding KYC Application Response
Onboarding KYC Application
Show child attributes
Show child attributes
Was this page helpful?