API Reference v3.0
- auth.v1
- API Reference
- ledger.v1
- ledger.v2
- payments.v1
- payments.v3
- search.v1
- webhooks.v1
- wallets.v1
- orchestration.v1
- orchestration.v2
- reconciliation.v1
auth.v1
List clients
GET
/
api
/
auth
/
clients
Copy
Ask AI
curl --request GET \
--url http://localhost:55001/api/auth/clients \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"data": [
{
"public": true,
"redirectUris": [
"<string>"
],
"description": "<string>",
"name": "<string>",
"trusted": true,
"postLogoutRedirectUris": [
"<string>"
],
"metadata": {},
"scopes": [
"<string>"
],
"id": "<string>",
"secrets": [
{
"lastDigits": "<string>",
"name": "<string>",
"id": "<string>",
"metadata": {}
}
]
}
]
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Response
200 - application/json
List of clients
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url http://localhost:55001/api/auth/clients \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"data": [
{
"public": true,
"redirectUris": [
"<string>"
],
"description": "<string>",
"name": "<string>",
"trusted": true,
"postLogoutRedirectUris": [
"<string>"
],
"metadata": {},
"scopes": [
"<string>"
],
"id": "<string>",
"secrets": [
{
"lastDigits": "<string>",
"name": "<string>",
"id": "<string>",
"metadata": {}
}
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.