Successful operation.
application/json
{
"type": "object",
"properties": {
"client": {
"$ref": "#/components/schemas/AccountOAuthClient",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"kind": {
"type": "string",
"enum": [
"personal",
"agent",
"partner"
]
},
"partnerId": {
"type": "string"
},
"mcpCaseId": {
"type": "string"
},
"redirectUris": {
"type": "array",
"items": {
"type": "string"
}
},
"scopes": {
"type": "array",
"items": {
"type": "string",
"enum": [
"cases:read",
"filings:write",
"answers:write",
"submissions:write",
"records:confirm",
"records:write",
"invitations:write",
"messages:write",
"remedies:write",
"consents:write",
"offline_access",
"representatives:manage",
"procedural:request",
"termination:write"
]
}
},
"createdAt": {
"type": "string"
},
"revokedAt": {
"type": "string"
}
},
"required": [
"id",
"name",
"kind",
"redirectUris",
"scopes",
"createdAt"
]
},
"clientSecret": {
"type": "string",
"description": "Confidential clients only; shown once."
}
},
"required": [
"client"
]
}