Groups
Last updated
Was this helpful?
Last updated
Was this helpful?
GET /api/admin/v1/groups/{id} HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"id": "text",
"name": "text",
"source_id": "text",
"source_integration_id": "text",
"source_integration_name": "text"
}
100
GET /api/admin/v1/groups/{id}/members HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"items": [
{
"email": "text"
}
],
"pagination": {
"next_page_token": "text"
}
}
100
GET /api/admin/v1/groups HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"items": [
{
"id": "text",
"name": "text",
"source_id": "text",
"source_integration_id": "text",
"source_integration_name": "text"
}
],
"pagination": {
"next_page_token": "text"
}
}
Display name of the group
Email addresses to assign as members of the group
POST /api/admin/v1/groups HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 41
{
"name": "text",
"members_emails": [
"text"
]
}
OK
{
"id": "text",
"name": "text",
"source_id": "text",
"source_integration_id": "text",
"source_integration_name": "text"
}
Email addresses to assign as members of the group
PUT /api/admin/v1/groups/{id}/members HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 27
{
"members_emails": [
"text"
]
}
No Content
No content
Display name of the group
PUT /api/admin/v1/groups/{id}/name HTTP/1.1
Host: api.apono.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}
OK
{
"id": "text",
"name": "text",
"source_id": "text",
"source_integration_id": "text",
"source_integration_name": "text"
}