Payments API now live! Read more at API Reference
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>"
}
]
}Retrieve all organizations the current user is a member of
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>"
}
]
}Was this page helpful?