Users
Last updated
Was this helpful?
Last updated
Was this helpful?
100
GET /api/admin/v3/users HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"items": [
{
"id": "text",
"email": "text",
"email_aliases": [
"text"
],
"first_name": "text",
"last_name": "text",
"active": true,
"roles": [
"text"
],
"source_integration_id": "text",
"source_integration_name": "text",
"attributes": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
],
"pagination": {
"next_page_token": "text"
}
}
GET /api/admin/v3/users/{id} HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"id": "text",
"email": "text",
"email_aliases": [
"text"
],
"first_name": "text",
"last_name": "text",
"active": true,
"roles": [
"text"
],
"source_integration_id": "text",
"source_integration_name": "text",
"attributes": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
GET /api/v2/users HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"data": [
{
"id": "text",
"email": "text",
"first_name": "text",
"last_name": "text",
"active": true
}
],
"pagination": {
"total": 1,
"limit": 1,
"offset": 1
}
}
GET /api/v2/users/{id} HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"id": "text",
"email": "text",
"first_name": "text",
"last_name": "text",
"active": true
}