- Introduction
- Getting Started with our APIs
- Pagination
- Authorization
- CWT credentials
- Semantic CWT credentials
- JSON credentials
- mDocs
- postCreate a trusted issuer
- getRetrieve all trusted issuers
- getRetrieve a trusted issuer
- delDelete a trusted issuer
- postCreate a verifier root CA certificate
- getRetrieve all verifier root CA certificates
- putUpdate a verifier root CA certificate
- getRetrieve a verifier root CA certificate
- delDelete a verifier root CA certificate
- postCreate verifier application
- getRetrieve all verifier applications
- putUpdate verifier application
- getRetrieve a verifier application
- delDelete a verifier application
- postCreate wallet provider
- getRetrieve all wallet providers
- putUpdate a wallet provider
- getRetrieve a wallet provider
- delDelete a wallet provider
- getRetrieve presentation session result
Create API Auth Token
Authorization endpoint for gaining token used for API requests requiring bearerAuth
.
You will be provided the required client_id
and client_secret
as part of onboarding.
Request
Request Body schema: application/json
Responses
200
Successful response
401
Unauthorized
post/oauth/token
Request samples
- Payload
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
application/json
{- "client_id": "htf792W4p4MedZbnoWAs51EfqUt4d2",
- "client_secret": "d3fYDX7FjPg1D1h2viARXsolPByQ9vMfg8LHylBy8F4s5KJLB4HhHGOxxqJnSj3G",
- "grant_type": "client_credentials"
}
Response samples
- 200
- 401
application/json
{- "access_token": "s2dgbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6s2dcaEROemRDf5gbRVEwTTVSVFE0TmtZME9UZzVNVEpDTlVJNFJqRTBPREExTmpZMk1qazFPQSJ9",
- "expires_in": 86400,
- "token_type": "Bearer"
}