Skip to main content
GET
/
api
/
v1
/
user
/
businesses
List all businesses the authenticated user is a member of (any status: ACTIVE or INVITED). Used by the apps/web business switcher.
curl --request GET \
  --url http://localhost:3001/api/v1/user/businesses \
  --header 'Authorization: Bearer <token>'
{
  "businesses": [
    {
      "businessId": "biz_01H...",
      "businessName": "Pray With Temi",
      "role": "OWNER",
      "status": "ACTIVE",
      "isActive": true,
      "joinedAt": "2026-05-20T10:00:00.000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

businesses
object[]
required