Skip to main content
Skip table of contents

Retrieve a single User

URL

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

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

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

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": ""
  }

JavaScript errors detected

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

If this problem persists, please contact our support.