List collection users
GET/collections/:parent_id/users
note
This feature is only available in Preview to select customers on our Enterprise plan. Contact us for more information.
Returns a list of User objects.
Request
Path Parameters
parent_id stringrequired
Example: 0258cbc6-6020-430a-848e-aafacbadf4ae
Query Parameters
modified_after date-time
If provided, will only return objects modified after this datetime. Datetime must be in ISO 8601 format and URI encoded.
Example: 2023-02-23T00:00:00Z
page_size string
Number of results to return per page. (Max: 1000)
Example: 123
cursor string
The pagination cursor value
Example: cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw
Header Parameters
x-customer-id stringrequired
The customer ID that uniquely identifies the customer in your application
Example: my-customer-1
x-provider-name stringrequired
The provider name
Example: salesforce
Responses
- 200
CollectionUsersData
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
pagination objectrequired
next stringnullablerequired
previous stringnullablerequired
total_count number
records object[]required
name stringnullablerequired
email_address stringrequired
is_active booleanrequired
teams string[]
avatar stringnullable
{
"pagination": {
"next": "eyJpZCI6IjQyNTc5ZjczLTg1MjQtNDU3MC05YjY3LWVjYmQ3MDJjNmIxNCIsInJldmVyc2UiOmZhbHNlfQ==",
"previous": "eyJpZCI6IjBjZDhmYmZkLWU5NmQtNDEwZC05ZjQxLWIwMjU1YjdmNGI4NyIsInJldmVyc2UiOnRydWV9",
"total_count": 100
},
"records": [
{
"name": "Hil Feig",
"email_address": "help@supaglue.com",
"is_active": false,
"teams": [
"681b0fd7-40e6-4b91-8e23-2814872090be"
],
"avatar": "https://supaglue.io/user_profile_pic.png"
}
]
}
Loading...