Search across your application’s users at Transmit. This endpoint also allows you to return all of your application’s users by sending no filters at all.
Required permissions: apps:read, [appId]:read, users:read, apps:list, [appId]:list, users:list.
Security
ClientAccessToken
The name of the field you wish to sort by
Default:"meta.created"
Enum:"emails""phoneNumbers""meta.created""lastAuth"
Search expression based on the SCIM protocol. For syntax and searchable fields, see Search query syntax
The names of the user's attributes to return in the response, overriding the set of attributes that would be returned by default
The names of the user's attributes to be removed from the default set of attributes to return
- Sandbox environmenthttps://api.sbx.transmitsecurity.io/cis/scim/Users/.search
- US production environmenthttps://api.transmitsecurity.io/cis/scim/Users/.search
- EU production environmenthttps://api.eu.transmitsecurity.io/cis/scim/Users/.search
- CA production environmenthttps://api.ca.transmitsecurity.io/cis/scim/Users/.search
- AU production environmenthttps://api.au.transmitsecurity.io/cis/scim/Users/.search
- JP production environmenthttps://api.gasne1-ts01.transmitsecurity.io/cis/scim/Users/.search
curl -i -X POST \
https://api.sbx.transmitsecurity.io/cis/scim/Users/.search \
-H 'Accept: string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"startIndex": 1,
"count": 1000,
"sortBy": "emails",
"sortOrder": "asc",
"filter": "string",
"attributes": [
"string"
],
"excludedAttributes": [
"string"
],
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:SearchRequest"
]
}'Response
{ "schemas": [ "string" ], "totalResults": 0, "Resources": [ { … } ], "startIndex": 0, "itemsPerPage": 0 }