{
"access_token": "in nisi pariatur aliqua Lorem",
"token_type": "bearer",
"expires_in": 3600
}
Copied to Clipboard
{
"title": "result",
"description": "A result containing the JWT providing the user access to IAP for a set amount of time",
"type": "object",
"properties": {
"access_token": {
"description": "The JWT providing the user access to IAP",
"type": "string"
},
"token_type": {
"description": "The type of token provided",
"type": "string",
"enum": [
"bearer"
]
},
"expires_in": {
"description": "The amount of time until the JWT expires",
"type": "integer",
"enum": [
3600
]
}
}
}