Skip to main content
GET
/
api
/
organizations
List organizations
curl --request GET \
  --url https://platform.usewarp.net/api/organizations \
  --header 'Authorization: Bearer <token>'
{
  "organizations": [
    {
      "id": "<string>",
      "name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "member_count": 123,
      "projects_count": 123,
      "user_role": "admin",
      "current_plan_id": "<string>",
      "owner_id": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Response

Organizations retrieved successfully

organizations
object[]