Skip to content

Get inbox triage run status

GET
/emails/triage-runs/{run_id}

Returns the persisted status for an asynchronous inbox triage run. Use this endpoint as a polling fallback when socket progress events are missed.

Authorizations

BearerAuth

JWT token from login

Type
HTTP (bearer)
or
AccessToken

Personal access token. Value: Token <your-token>

Type
API Key (header: Authorization)

Parameters

Path Parameters

run_id*
Type
string
Required

Responses

OK

application/json
JSON
{
  
"run": {
  
  
"run_id": "string",
  
  
"host_id": "string",
  
  
"user_id": "string",
  
  
"tenant_id": "string",
  
  
"member_role": "string",
  
  
"project": "string",
  
  
"limit": 0,
  
  
"status": "string",
  
  
"total": 0,
  
  
"processed": 0,
  
  
"triaged": 0,
  
  
"drafted": 0,
  
  
"linked": 0,
  
  
"moved": 0,
  
  
"errors": [
  
  
  
{
  
  
  
  
"email_id": "string",
  
  
  
  
"error": "string"
  
  
  
}
  
  
],
  
  
"last_error": "string",
  
  
"started_at": "string",
  
  
"completed_at": "string",
  
  
"createdAt": "string",
  
  
"updatedAt": "string"
  
}
}

Playground

Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI