# Get SCIM Schemas **GET /Schemas** Returns available fields for each schema, including the attributes of the User that we support. The supported attributes include: - **userName**: A unique identifier for the User, required for authentication. - **name**: The components of the user's real name, which includes both `givenName` and `familyName`, and can be returned as a full name or individual components. - **externalId**: The provider unique ID of a SCIM resource. - **title**: The user's title, such as 'Vice President'. - **timezone**: The User's time zone in the 'Olson' time zone database format. - **active**: A Boolean indicating the User's administrative status. - **emails**: Only one email address is supported, which must be of type 'work'. - **locale**: Language/region setting (e.g., 'en-GB'). - **preferredLanguage**: User's preferred language. - **id**: Adra-generated unique user ID. - **employeeNumber**: Employee reference number (Enterprise User Schema). ## Servers - Production server: https://setup.adra.com/api/organizations/{organizationSid}/scim (Production server) ## Authentication methods - Adra personal access token ## Parameters ## Responses ### 200 OK #### Body: application/scim+json (object) - **schemas** (array[string]) - **totalResults** (integer(int32)) - **itemsPerPage** (integer(int32)) - **startIndex** (integer(int32) | null) - **Resources** (array[object] | null) ### 400 Bad Request #### Body: application/scim+json (object) - **type** (string | null) - **title** (string | null) - **status** (integer(int32) | null) - **detail** (string | null) - **instance** (string | null) ### 401 Unauthorized #### Body: application/scim+json (object) - **type** (string | null) - **title** (string | null) - **status** (integer(int32) | null) - **detail** (string | null) - **instance** (string | null) ### 403 Forbidden #### Body: application/scim+json (object) - **type** (string | null) - **title** (string | null) - **status** (integer(int32) | null) - **detail** (string | null) - **instance** (string | null) ### 500 Internal Server Error #### Body: application/scim+json (object) - **type** (string | null) - **title** (string | null) - **status** (integer(int32) | null) - **detail** (string | null) - **instance** (string | null) ### 501 Not Implemented #### Body: application/scim+json (object) - **type** (string | null) - **title** (string | null) - **status** (integer(int32) | null) - **detail** (string | null) - **instance** (string | null) [Powered by Bump.sh](https://bump.sh)