Query parameters
-
includeScopes string
If it's provided with a truthy value (
true
,1
,yes
), the scopes of each resource will be included in the response. -
page integer
Page number (starts from 1).
Minimum value is
1
. Default value is1
. -
page_size integer
Entries per page.
Minimum value is
1
. Default value is20
.
GET /api/resources
curl \
-X GET https://[tenant_id].logto.app/api/resources \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"tenantId": "string",
"id": "string",
"name": "string",
"indicator": "string",
"isDefault": true,
"accessTokenTtl": 42.0,
"scopes": [
{
"tenantId": "string",
"id": "string",
"resourceId": "string",
"name": "string",
"description": "string",
"createdAt": 42.0
}
]
}
]