Successful operation.
application/json
{
"type": "object",
"properties": {
"approvalUrl": {
"type": "string"
},
"expiresAt": {
"type": "string"
}
},
"required": [
"approvalUrl",
"expiresAt"
]
}Confidential approved partner client authentication required. The one-hour, single-use hosted approval link creates the same case-bound delegate grant as ordinary OAuth. Approval binds the current case membership and side; each token use rechecks that membership. Approval or denial consumes the link. A new case is never created.
/api/oauth/link-requestsrequestAccountCaseLinkNo bearer credential is required.
This operation has no path, query, or header parameters.
Required request body.
application/x-www-form-urlencoded
{
"type": "object",
"properties": {
"client_id": {
"type": "string"
},
"client_secret": {
"type": "string",
"writeOnly": true
},
"case_id": {
"type": "string"
},
"party": {
"type": "string",
"enum": [
"claimant",
"respondent"
],
"description": "Requested case side. Use respondent for a respondent handoff."
},
"redirect_uri": {
"type": "string"
},
"scope": {
"type": "string"
},
"state": {
"type": "string"
},
"code_challenge_method": {
"type": "string",
"const": "S256"
},
"code_challenge": {
"type": "string"
}
},
"required": [
"case_id",
"redirect_uri",
"scope",
"state",
"code_challenge_method",
"code_challenge"
],
"example": {
"client_id": "COPY_REGISTERED_CLIENT_ID",
"client_secret": "COPY_CONFIDENTIAL_CLIENT_SECRET",
"case_id": "pcase_existing",
"party": "respondent",
"redirect_uri": "https://your-app.example/callback",
"scope": "cases:read",
"state": "COPY_FRESH_STATE",
"code_challenge_method": "S256",
"code_challenge": "COPY_FRESH_S256_CHALLENGE"
}
}Successful operation.
application/json
{
"type": "object",
"properties": {
"approvalUrl": {
"type": "string"
},
"expiresAt": {
"type": "string"
}
},
"required": [
"approvalUrl",
"expiresAt"
]
}Authorization failure; consent_required requires explicit reacceptance.
application/json
{
"$ref": "#/components/schemas/AccountOAuthError",
"type": "object",
"properties": {
"error": {
"type": "string"
},
"error_description": {
"type": "string"
}
},
"required": [
"error"
]
}{
"approvalUrl": "https://partner.test.example/callbacks/peoples-court",
"expiresAt": "expiresAt_test"
}Read the response status and stable error code. See errors and rate limits for recovery. Refresh the resource before resolving a state or digest conflict.
Retry-After when present. Back off on retryable server failures.