PATCH
/
v3
/
sessions
/
{sessionId}
Update Session
curl --request PATCH \
  --url http://127.0.0.1:3333/v3/sessions/{sessionId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "variables": [
    "<unknown>"
  ],
  "isCompleted": true,
  "hasStarted": true
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

sessionId
string
required

Body

application/json
variables
any[]
isCompleted
boolean
hasStarted
boolean

Response

200 - application/json

Default Response