List organizations
/v0/orgs
List organizations accessible to the current authentication method.
Returns
has_more: boolean
next_cursor: optional string
List organizations
curl https://api.stainless.com/v0/orgs \
-H "Authorization: Bearer $STAINLESS_API_KEY"
{
"data": [
{
"display_name": "display_name",
"object": "org",
"slug": "slug"
}
],
"has_more": true,
"next_cursor": "next_cursor"
}
Returns Examples
{
"data": [
{
"display_name": "display_name",
"object": "org",
"slug": "slug"
}
],
"has_more": true,
"next_cursor": "next_cursor"
}