List all Users
URL
GET https://<tenant>.bubbleppm.com/api/provisioning
Attributes
Name | Type | Description |
|---|---|---|
| PK<Person> | The User/Person id |
| string | First name |
| string | Last name |
| string | email address |
| boolean | If false the user cannot login and will not be billed against |
| string | |
| string | |
| array | |
| array | |
| array | |
| boolean | If true the user can access the admin site |
| boolean | Whether the user receives in app or email notifications |
| boolean | Whether the user receives digest |
| string | Which frequency the digest should be sent |
| string | The persons job title |
Example Response
[
{
"provisioned_person_id": 1,
"first_name": "",
"last_name": "",
"email": "user@tenant.com",
"active": true,
"language": "en-us",
"department": null,
"key_skills": [],
"permission_groups": [],
"role": [
"Admin"
],
"staff": true,
"instant_notifications": false,
"receives_digest": false,
"digest_frequency": "weekly",
"job_title": ""
},
{
"provisioned_person_id": 2,
"first_name": "",
"last_name": "",
"email": "user2@tenant.com",
"active": true,
"language": "en-us",
"department": null,
"key_skills": [],
"permission_groups": [],
"role": [],
"staff": true,
"instant_notifications": false,
"receives_digest": false,
"digest_frequency": "weekly",
"job_title": ""
}
]