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
Update client
PUT
/
api
/
auth
/
clients
/
{clientId}
Copy
Ask AI
curl --request PUT \
--url http://localhost:55001/api/auth/clients/{clientId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"public": true,
"redirectUris": [
"<string>"
],
"description": "<string>",
"name": "<string>",
"trusted": true,
"postLogoutRedirectUris": [
"<string>"
],
"metadata": {},
"scopes": [
"<string>"
]
}'
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.
Path Parameters
Client ID
Body
application/json
Response
200 - application/json
Updated client
The response is of type object
.
Copy
Ask AI
curl --request PUT \
--url http://localhost:55001/api/auth/clients/{clientId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"public": true,
"redirectUris": [
"<string>"
],
"description": "<string>",
"name": "<string>",
"trusted": true,
"postLogoutRedirectUris": [
"<string>"
],
"metadata": {},
"scopes": [
"<string>"
]
}'
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.