Skip to main content
POST
/
v1
/
workflow
/
playground
/
sessions
/
{session_id}
/
resume
Resume Approval
curl --request POST \
  --url https://api-sandbox.featherhq.com/v1/workflow/playground/sessions/{session_id}/resume \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "note": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

session_id
string
required

Body

application/json

Approve or deny the approval the session is suspended on (in-memory, no resume_token).

decision
enum<string>
required
Available options:
approve,
deny
note
string | null
Maximum string length: 50000

Response

Successful Response