curl --request GET \
--url https://api.getprimo.com/admins \
--header 'Authorization: Bearer <token>'{
"data": [
{
"type": "<string>",
"id": "<string>",
"email": "<string>",
"roleName": "<string>"
}
]
}Return the list of admin users for your company. Each entry is either an employee (with an id) or an external user (identified by email only).
curl --request GET \
--url https://api.getprimo.com/admins \
--header 'Authorization: Bearer <token>'{
"data": [
{
"type": "<string>",
"id": "<string>",
"email": "<string>",
"roleName": "<string>"
}
]
}Was this page helpful?