Get OAuth2 client
Handle OAuth2 client CRUD operations Route: auth/oauth/client[/]
Path Parameters
- Type: integerclient
Id requiredID of OAuth2 client
Responses
- application/json
- application/json
- 401
Unauthorized
- application/json
- 404
OAuth2 client not found
- application/json
Request Example for get/auth/oauth/client/{clientId}
curl https://test.boost.space/api/auth/oauth/client/1 \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"id": 42,
"created": "2026-01-15T09:30:00Z",
"createdUserId": 42,
"updated": "2026-01-15T09:30:00Z",
"updatedUserId": 42,
"clientId": "string",
"clientName": "Sample clientName",
"redirectUris": [
"https://acme.boost.space"
],
"scopes": [
"string"
],
"tokenId": 42
}