Update customer subaccount onboarding application
curl --request PUT \
--url https://api.anchorage-staging.com/v2/onboarding/subaccounts/{subaccountId} \
--header 'Api-Access-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"entries": [
{
"key": "<string>",
"value": "<string>"
}
]
}
'import requests
url = "https://api.anchorage-staging.com/v2/onboarding/subaccounts/{subaccountId}"
payload = { "entries": [
{
"key": "<string>",
"value": "<string>"
}
] }
headers = {
"Api-Access-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'Api-Access-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({entries: [{key: '<string>', value: '<string>'}]})
};
fetch('https://api.anchorage-staging.com/v2/onboarding/subaccounts/{subaccountId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"status": "<string>",
"subaccountId": "<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'."
}Update customer subaccount onboarding application
Permissions required: Onboarding Update data of an existing customer subaccount onboarding application
PUT
/
onboarding
/
subaccounts
/
{subaccountId}
Update customer subaccount onboarding application
curl --request PUT \
--url https://api.anchorage-staging.com/v2/onboarding/subaccounts/{subaccountId} \
--header 'Api-Access-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"entries": [
{
"key": "<string>",
"value": "<string>"
}
]
}
'import requests
url = "https://api.anchorage-staging.com/v2/onboarding/subaccounts/{subaccountId}"
payload = { "entries": [
{
"key": "<string>",
"value": "<string>"
}
] }
headers = {
"Api-Access-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'Api-Access-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({entries: [{key: '<string>', value: '<string>'}]})
};
fetch('https://api.anchorage-staging.com/v2/onboarding/subaccounts/{subaccountId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"status": "<string>",
"subaccountId": "<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
Unique identifier for a customer subaccount - generated to the client when creating subaccount
Body
application/json
A collection of responses for a set of defined relevant questions.
Show child attributes
Show child attributes
Response
Information regarding the onboarding state
Show child attributes
Show child attributes
Was this page helpful?