curl --request GET \
--url https://app.trelica.com/api/people/v1/{id}/apps \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": "9425963fcd38ed972d209b49",
"name": "Asana",
"status": "Managed",
"appUser": {
"id": "6469f0b3e2a1c4d5f6a7b801",
"name": "John Doe",
"email": "john.doe@example.com",
"status": "Active",
"lastLoginDtm": "2024-05-24T09:12:33Z",
"deleted": false,
"lastModifiedDtm": "2024-05-26T01:03:26Z"
}
}
]
}List a person's applications
Returns a paginated list of the applications a person has an account on, identified by their SaaS Manager ID or email address. If an email address matches more than one person a 409 Conflict is returned.
Required scope: People.Read (Read-only access to people and teams)
curl --request GET \
--url https://app.trelica.com/api/people/v1/{id}/apps \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": "9425963fcd38ed972d209b49",
"name": "Asana",
"status": "Managed",
"appUser": {
"id": "6469f0b3e2a1c4d5f6a7b801",
"name": "John Doe",
"email": "john.doe@example.com",
"status": "Active",
"lastLoginDtm": "2024-05-24T09:12:33Z",
"deleted": false,
"lastModifiedDtm": "2024-05-26T01:03:26Z"
}
}
]
}Authorizations
OAuth 2.0. Obtain an access token via the Client Credentials or Authorization Code flow, then send it as Authorization: Bearer <token>.
Path Parameters
The person's SaaS Manager ID (UUID) or an email address.
Query Parameters
A SCIM-style filter expression restricting the items returned. See the Filtering section of the introduction for the operators and syntax; the filterable fields are listed per resource.
Filterable fields
- string:
appUser.email,appUser.id,appUser.name,appUser.status,app[status],id,name,status - date:
appUser.lastLoginDtm,appUser.lastModifiedDtm - boolean:
appUser.deleted
Filter examples
name sw "Sales"— Applications whose name starts with "Sales"appUser.status eq "Active"— Applications where the person's account is activeappUser.lastLoginDtm ge "2024-01-01"— Applications the person logged in to on or after 1 Jan 2024
Free-text search across the resource's displayable fields.
Only return items modified at or after this ISO-8601 timestamp.
Only return items modified at or before this ISO-8601 timestamp.
Opaque pagination cursor supplied by SaaS Manager via the link response header and the next field.
Maximum number of items to return per page (default 100, maximum 1000).
1 <= x <= 1000Was this page helpful?