Access Sessions
Last updated
Was this helpful?
Last updated
Was this helpful?
100
GET /api/user/v1/access-sessions HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"items": [
{
"id": "text",
"name": "text",
"request_ids": [
"text"
],
"integration": {
"id": "text",
"name": "text"
},
"credentials_status": "text",
"can_reset_credentials": true
}
],
"pagination": {
"next_page_token": "text"
}
}
GET /api/user/v1/access-sessions/{id} HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"id": "text",
"name": "text",
"request_ids": [
"text"
],
"integration": {
"id": "text",
"name": "text"
},
"credentials_status": "text",
"can_reset_credentials": true
}
GET /api/user/v1/access-sessions/{id}/access-details HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"instructions": "text",
"custom_admin_message": "text",
"parameters": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"cli": "text",
"link": {
"url": "text",
"title": "text"
}
}