Returns a paginated list of all organizations within your enterprise.
Query Parameters
Number of organizations to skip for pagination. Must be >= 0.
Maximum number of organizations to return. Must be between 1 and 1000.
Response
Array of organization objects
Number of members with admin role in this organization
Unique identifier for the organization
Total number of members in this organization
Organization display name
Total number of users in this organization
Maximum ACU limit per billing cycle (null if no limit)
Maximum ACU limit per session (null if no limit)
Total number of organizations in the enterprise
Number of organizations skipped
Maximum number of organizations returned
Whether there are more organizations available
Cursor for the next page of results
curl -X GET "https://api.devin.ai/v2/enterprise/organizations" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"items": [
{
"org_admin_count": 3,
"org_id": "org_123",
"org_member_count": 25,
"org_name": "Engineering Team",
"org_user_count": 25,
"max_cycle_acu_limit": 1000,
"max_session_acu_limit": 50
},
{
"org_admin_count": 2,
"org_id": "org_456",
"org_member_count": 12,
"org_name": "Product Team",
"org_user_count": 12,
"max_cycle_acu_limit": null,
"max_session_acu_limit": 25
},
{
"org_admin_count": 1,
"org_id": "org_789",
"org_member_count": 8,
"org_name": "Design Team",
"org_user_count": 8,
"max_cycle_acu_limit": 500,
"max_session_acu_limit": null
}
],
"total": 3,
"skip": 0,
"limit": 100,
"has_more": false,
"next_cursor": null
}