Skip to main content
POST
/
v0
/
user
/
me
/
onboarding
/
advance
Advance Onboarding
curl --request POST \
  --url https://api.example.com/v0/user/me/onboarding/advance \
  --header 'Content-Type: application/json' \
  --data '
{
  "step": "phone_verification"
}
'
{
  "_links": {
    "kyc": {
      "description": "Submit KYC information",
      "href": "/v0/user/me/kyc",
      "method": "PUT"
    },
    "self": {
      "href": "/v0/user/me",
      "method": "GET"
    },
    "wallets": {
      "href": "/v0/wallets",
      "method": "GET"
    }
  }
}

Headers

x-juno-jwt
string | null

Body

application/json
step
string
required

The onboarding step to advance past. Must match the user's current step.

Example:

"phone_verification"

Response

Onboarding step advanced successfully.

HAL-style hypermedia links for navigation.

onboarding
OnboardingData · object
required

Updated onboarding state after advance.