Skip to main content
Skip table of contents

List all Users

URL

GET https://<tenant>.bubbleppm.com/api/provisioning

Attributes

Name

Type

Description

provisioned_person_id

PK<Person>

The User/Person id

first_name

string

First name

last_name

string

Last name

email

string

email address

active

boolean

If false the user cannot login and will not be billed against

language

string

ISO 639-1 language code

department

string

The persons department

key_skills

array

The persons key skills

permission_groups

array

The persons permission groups

role

array

The users roles

staff

boolean

If true the user can access the admin site

instant_notifications

boolean

Whether the user receives in app or email notifications

receives_digest

boolean

Whether the user receives digest

digest_frequency

string

Which frequency the digest should be sent

job_title

string

The persons job title

Example Response

CODE
[
    {
        "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": ""
    }
]

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.