Skip to main content
PUT
/
onboarding
/
customers
/
{customerId}
Update customer onboarding application
curl --request PUT \
  --url https://api.anchorage-staging.com/v2/onboarding/customers/{customerId} \
  --header 'Api-Access-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "entries": [
    {
      "key": "<string>",
      "value": "<string>"
    }
  ]
}
'
{
  "data": {
    "customerId": "<string>",
    "status": "<string>",
    "id": "<string>"
  }
}

Authorizations

Api-Access-Key
string
header
required

An API key associated with a security role

Path Parameters

customerId
string
required

Unique identifier customer - generated to the client when creating KYC application

Body

application/json
entries
object[]
required

A collection of responses for a set of defined relevant questions.

Response

Information regarding the onboarding state

data
UpdateKYCApplicationResponseData · object
required