Getting Started with the Cover Mint API Guide (v1.0.0)
This API allows clients to create new patient enrollments into the covermint system. version: 1.0.0
Before using the API, retrieve an access_token from AWS Cognito.
Token Request
POST https://tekrata-login.auth.us-east-2.amazoncognito.com/oauth2/token
Content-Type: application/x-www-form-urlencoded
Body Parameters
grant_type=client_credentials
&client_id=YOUR_CLIENT_ID
&client_secret=YOUR_CLIENT_SECRET
&scope=dev/covermint
Response Example
{
"access_token": "eyJraWQiOiJ...xyz",
"token_type": "Bearer",
"expires_in": 3600
}