Skip to main content
POST https://api.uip.digital/v1/sessions/{id}/continue · Auth: Bearer API key
Resumes a session paused at a gate (status: awaiting_decision), advancing it to the next step. Use this when a later step should depend on an earlier result — e.g. only proceed to sign once you’ve checked the identify claims against your records.

Path parameters

id
string
required
The session id.

Behavior

  • Valid only when the session is awaiting_decision; otherwise returns an error.
  • If the gated step was the last remaining step, the session moves to completed; the matching session.completed webhook fires.
  • Owner-only: the API key’s business must own the session.
{
  "id": "sess_abc123",
  "status": "in_progress",
  "current_step": 1,
  "step_count": 2,
  "current_primitive": "sign"
}
404 unknown/foreign session · 409/400 if the session isn’t at a gate. See Errors.