List groups as SCIM Groups objects. SCIM specification for list responses.
SCIM
List groups
get
https://airtable.com/scim/v2/Groups
Authentication | Personal access token, OAuth integration |
Scope | enterprise.scim.usersAndGroups:manage |
User role | Enterprise admin Admins of multiple enterprises
should use a service account's token when calling this route. |
Billing plans | Enterprise (pre-2023.08 legacy plan), Enterprise Scale |
optional< number > Number of groups to return, defaults to all groups. | |
optional< string > The SCIM spec includes additional filter options, but we only support equality filtering by the Group display name, which is the SCIM displayName. |
array of strings | |||||||
number Position of the first result from the full list of groups, starting from 1, defaults to 1. | |||||||
number | |||||||
number | |||||||
array of the below object
|
Request (example)
Copy
$curl "https://airtable.com/scim/v2/Groups" \-H "Authorization: Bearer YOUR_TOKEN"
200 – Response (example)
{"Resources": [{"displayName": "ExampleGroup","id": "ugpQ7PJ2boxzMAKFU","schemas": ["urn:ietf:params:scim:schemas:core:2.0:Group"]}],"itemsPerPage": 1,"schemas": ["urn:ietf:params:scim:api:messages:2.0:ListResponse"],"startIndex": 1,"totalResults": 1}