GET/conformance/v3/auth-mock/request_uri/:requestId
Authorisation Server endpoint that returns a Request Object. request_uri SHOULD be used whenever the request object is large.
Request
Path Parameters
- tokenRequestID
Unique Request ID
Request ID
Example: 2160d1e4-2243-48cc-ae90-169e3d206502
Responses
- 200
- 400
- 404
- 500
OK
- application/jwt
- Schema
Schema
Authorisation Request Object - The Request Object must be signed with the client's (Credential Issuer) private keys, owned by the requesting client_id. The used private key's public key must be discoverable through client's openid-configuration through jwks_uri parameter.
The Authorisation Request Object MUST be a valid JWS.
See the Authorisation Request Object schema.
Bad Request
- application/problem+json
- Schema
- invalidState
Schema
Default value: about:blank
An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type.
A short summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code generated by the origin server for this occurrence of the problem.
A human readable explanation specific to this occurrence of the problem.
An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"detail": "[\"requestId must be a UUID\"]",
"status": 400,
"title": "Bad Request",
"type": "about:blank"
}
Request Not Found
- application/problem+json
- Schema
- invalidState
Schema
Default value: about:blank
An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type.
A short summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code generated by the origin server for this occurrence of the problem.
A human readable explanation specific to this occurrence of the problem.
An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"detail": "No Authorization Request found with the ID {requestId}",
"status": 404,
"title": "Not Found",
"type": "about:blank"
}
Internal Error
- application/problem+json
- Schema
- Internal Server Error
Schema
Default value: about:blank
An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type.
A short summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code generated by the origin server for this occurrence of the problem.
A human readable explanation specific to this occurrence of the problem.
An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"title": "Internal Server Error",
"status": 500,
"detail": "The server encountered an internal error and was unable to complete your request"
}