Skip to main content
POST
/
api
/
processes
Get processes (prompts) for a selected user
curl --request POST \
  --url https://your-instance.example.com/api/processes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "selectedUser": {
    "userId": "<string>"
  }
}
'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json
selectedUser
object
required

Response

Processes fetched successfully

Generic response envelope. Endpoint-specific fields are intentionally open.