Staging environment — data here is not production data
Browse documentation
Flow Sessions

Refresh Flow Session

post/v1/flow-session-tokens

Refresh Flow Session

Authentication

Send your tenant secret key as a Bearer token. Keep secret keys on your server; never ship them in browser or mobile code.

Example request

cURL
curl --request POST \
  --url 'https://api.fideralabs.com/v1/flow-session-tokens' \
  --header 'Authorization: Bearer $FIDERA_API_KEY'

Responses

200Successful Response
expires_at
stringrequired

No additional field description.

flow_id
stringrequired

No additional field description.

resumed
booleanrequired

No additional field description.

session_id
stringrequired

No additional field description.

session_token
string | null

Present for native channels; browser sessions use the HttpOnly cookie.

submission_id
stringrequired

No additional field description.

application/json
{
  "expires_at": "2026-07-29T12:00:00Z",
  "flow_id": "00000000-0000-0000-0000-000000000000",
  "resumed": true,
  "session_id": "00000000-0000-0000-0000-000000000000",
  "session_token": "string",
  "submission_id": "00000000-0000-0000-0000-000000000000"
}
422Validation Error
detail
ValidationError[]

No additional field description.

Operation ID

refresh_flow_session_v1_flow_session_tokens_post