Skip to main content
POST
/
v0
/
user
/
me
/
onboarding
/
advance
Advance Onboarding
curl --request POST \
  --url https://api.sumvin.com/v0/user/me/onboarding/advance \
  --header 'Content-Type: application/json' \
  --data '
{
  "step": "phone_verification"
}
'
{
  "_links": {
    "self": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    },
    "wallets": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    },
    "kyc-status": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    },
    "kyc-token": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    }
  },
  "onboarding": {
    "current_step": "<string>",
    "steps": [
      {
        "step": "<string>",
        "status": "<string>",
        "gated": false,
        "meta": {}
      }
    ],
    "is_complete": true
  }
}

Headers

x-sumvin-token
string | null
x-juno-jwt
string | null
x-juno-orgid
string | null

Tenant org ID for multi-tenant auth

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.