v1
latestOpenAPI 3.1.02026-07-242735131.1 MBCompany Management
List a company's pending actions
Given a company ID, returns the company-level actions still pending for the company — for example company verification and Remote Payments setup. The list can be empty or contain one or more actions; setup_remote_payments is returned once per legal entity that needs it.
Scopes
| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage company resources (company_admin) | View companies (company:read) | Manage companies (company:write) |
get/v1/companies/{company_id}/actions
Path parameters
company_idstring required
Company ID
Response
Success
Example response
{
"data": {
"actions": [
{
"required": true,
"type": "verify_company"
},
{
"legal_entity_id": "31b8e49b-aa1c-47af-849c-3d0a53e20e0d",
"required": true,
"type": "setup_remote_payments"
}
]
}
}