Skip to main content
GET
/
v1
/
baas
/
entities
/
{entity_id}
/
onboardings
/
{onboarding_id}
Get Onboarding Status
curl --request GET \
  --url https://api-sandbox.y.uno/v1/baas/entities/{entity_id}/onboardings/{onboarding_id}
{
  "id": "onb_990e8400-e29b-41d4-a716-446655440000",
  "entity_id": "ent_660e8400-e29b-41d4-a716-446655440000",
  "yuno_account_id": "550e8400-e29b-41d4-a716-446655440000",
  "provider": {
    "entity_id": "col_entity_onboarded_123",
    "status": "verified"
  },
  "onboarding_type": "ONE_STEP",
  "status": "SUCCEEDED",
  "requirements": [],
  "created_at": "2026-02-01T10:00:00Z",
  "updated_at": "2026-02-01T14:30:00Z",
  "expires_at": "2026-02-08T10:00:00Z"
}

Path parameters

entity_id
string
required
The entity identifier.
onboarding_id
string
required
The onboarding identifier obtained from Create Entity Onboarding.

Response

Returns the onboarding object with the same schema as the Create Entity Onboarding response, reflecting the current status.
{
  "id": "onb_990e8400-e29b-41d4-a716-446655440000",
  "entity_id": "ent_660e8400-e29b-41d4-a716-446655440000",
  "yuno_account_id": "550e8400-e29b-41d4-a716-446655440000",
  "provider": {
    "entity_id": "col_entity_onboarded_123",
    "status": "verified"
  },
  "onboarding_type": "ONE_STEP",
  "status": "SUCCEEDED",
  "requirements": [],
  "created_at": "2026-02-01T10:00:00Z",
  "updated_at": "2026-02-01T14:30:00Z",
  "expires_at": "2026-02-08T10:00:00Z"
}