Contains the query parameters for verifiable presentation verification
The query property should contain an array of VP query configurations that define
what credentials and claims are required for successful verification.
Handles the creation of an authorization request using a VP Query.
Retrieves the presentation definition from the specified VP query and creates an authorization request.
Authorizations
Path parameters
idstringRequired
Body
Request body for creating an authorization request using a VP query
redirect_uristringRequired
Redirect URI to which the response will be sent
Example: http://example.com
validitynumber ยท doubleOptional
Validity of the authorization request in seconds
Example: 600
Responses
201
Created
application/json
400
Bad Request
application/json
post
POST /v1/verifier/vp-queries/{id}/authorization-request HTTP/1.1
Host: api
x-client-secret: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 52
{
"redirect_uri": "http://example.com",
"validity": 600
}