Skip to main content
POST
/
cases
/
{caseId}
/
actions
/
{brokerId}
/
{action}
Invoke a durable case action
curl --request POST \
  --url https://core.us.api.frayme.io/cases/{caseId}/actions/{brokerId}/{action} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "params": {}
}'
{
  "output": {}
}

Authorizations

X-API-Key
string
header
required

A tenant-scoped API key provisioned by Frayme.

Path Parameters

caseId
string
required

The case identifier returned by POST /cases.

brokerId
string
required

The broker that owns the action (e.g. sumsub).

action
string
required

The action id (from GET /cases/{caseId}/actions).

Body

application/json

An empty body is valid for actions that take no parameters.

params
object

Action-specific parameters. See the provider's page.

Response

Action performed; output carries its result.

output
object

Action-specific output fields.