Access Sessions
Authorizations
Query parameters
integration_idstring[] | nullableOptional
limitinteger · int32OptionalDefault:
100
page_tokenstring | nullableOptional
request_idsstring[] | nullableOptional
Responses
200
OK
application/json
get
GET /api/user/v1/access-sessions HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
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"
}
}
Authorizations
Path parameters
idstringRequired
Responses
200
OK
application/json
get
GET /api/user/v1/access-sessions/{id} HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
OK
{
"id": "text",
"name": "text",
"request_ids": [
"text"
],
"integration": {
"id": "text",
"name": "text"
},
"credentials_status": "text",
"can_reset_credentials": true
}
Authorizations
Path parameters
idstringRequired
Responses
200
OK
application/json
get
GET /api/user/v1/access-sessions/{id}/access-details HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
OK
{
"instructions": "text",
"custom_admin_message": "text",
"parameters": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"cli": "text",
"link": {
"url": "text",
"title": "text"
}
}
Last updated
Was this helpful?