- List users in the program
List SCIM schemas
Detail a SCIM schema
Provides SCIM Schema Provider Configuration
Provides SCIM Resource Types
Detail a SCIM Resource Type
Create a user in the program
Show a single program user by ID
Replace a user in the program
Update a user in the program
Completely remove a user from the system
Show information about the current user
Completely remove a user from the system (Not SCIM compliant)
List users in the program
This endpoint allows you to retrieve information about all or some of the users stored in the Firstup application and adheres to the SCIM 2.0 Section: 4.1 standard.
📚 For more in-depth guidance on using the user interface and understanding the application's behavior, you can refer to the user documentation provided here. This documentation will help bridge the gap between the API and the intricacies of Firstup.
Security
oauth2_as_a_server(Required scopes: users.read) or oauth2_as_a_user(Required scopes: users.read)
Supports a SCIM filter expression allowing for filtering the results based on specific criteria, such as userName or role.
Supported operator: eq
Supported Fields:
userName: internally maps to universal identifier.role: either new or legacy roles depending on program configuration.
Examples:
userName eq "user123"(URL encoded:?filter=userName%20eq%20%22user123%22)role eq "publisher"(URL encoded:?filter=role%20eq%20%22publisher%22)
SCIM pagination parameter 1-based offset of the first query result
SCIM pagination parameter Total number of results returned
- US1https://partner.socialchorus.com/scim/v2/Users
- US2https://partner.us2.onfirstup.com/scim/v2/Users
- EUhttps://partner.onfirstup.eu/scim/v2/Users
- oauth2_as_a_server
- oauth2_as_a_user
curl -i -X GET \
'https://partner.socialchorus.com/scim/v2/Users?filter=string&startIndex=0&count=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "schemas": [ "urn:ietf:params:scim:api:messages:2.0:ListResponse" ], "totalResults": 5, "itemsPerPage": 10, "startIndex": 1, "Resources": [ { … } ] }