Steve API
API Reference

List active companies

Returns every active company that may be used by Steve's external integration flows.

GET
/api/v1/companies

Authorization

AuthorizationRequiredBearer <token>

In: header

curl -X GET "https://your-deployment.convex.site/api/v1/companies" \
  -H "Authorization: Bearer <token>"

Active companies returned successfully.

{
  "companies": [
    {
      "id": "jx7abc123company",
      "name": "Warsaw North Store"
    },
    {
      "id": "jx7def456company",
      "name": "Krakow Central"
    }
  ]
}