Docs
WebsiteLoginFree Trial
  • Getting Started
    • OnCall Users
    • Team Admins
    • Account Admins
  • Architecture Guide
  • Common UI Design Patterns
  • Alerts
  • Teams
  • Schedules
  • Escalation Policies
  • Integrations
  • Broadcasts
  • Users
  • Notifications
  • Reports
  • Billing
  • Accounts
  • Stakeholders
  • Maintenance Windows
  • Routers
  • Notification Rules
  • Single Sign On (SSO)
  • Integration Guides
    • Introduction
    • 66uptime
    • Apex Ping
    • AppDynamics
    • Auvik
    • AWS CloudWatch
    • Azure Monitor
    • Cloudflare
    • Cronitor
    • Datadog
    • Dead Man's Snitch
    • Echoes HQ
    • ElastAlert
    • Email
    • Form
    • Freshdesk
    • Freshservice
    • Google Hangouts Chat
    • Grafana
    • Healthchecks.io
    • HetrixTools
    • Honeybadger
    • Hydrozen
    • Jira Server
    • JotForm
    • Kapacitor
    • LogicMonitor
    • Mattermost
      • Outgoing Webhook
      • Post to Channel
    • Meta Workplace
    • Microsoft Teams
    • New Relic
    • Outgoing Webhook
    • Pingdom
    • Prometheus
    • PRTG Network Monitor
    • Pulsetic
    • Sentry
    • ServerGuard24
    • Site24x7
    • Slack
      • Notifications
      • Outgoing Webhook
      • Post to Channel
    • SolarWinds
    • Stackdriver
    • StatusCake
    • Twilio
      • Incoming SMS
      • Live Call Routing
    • Typeform
    • Uptime
    • Uptime Kuma
    • UptimeRobot
    • Webhook
    • Zendesk
  • API
    • Introduction
    • Authentication
    • Errors
    • Pagination and Filters
    • Common Model Attributes
    • Account Users
    • Alerts
    • Broadcasts
    • Comments
    • Escalation Policies
    • Events
    • Integrations
    • Logs
    • Maintenance Windows
    • Notification Rules
    • Routers
    • Schedules
    • Teams
    • Users
  • Command Line Interface (CLI)
    • PagerTree CLI: Command Line Interface
Powered by GitBook
On this page
  • The User Object
  • Create a User
  • Retrieve a User
  • Update a User
  • Delete a User
  • List all Users

Was this helpful?

  1. API

Users

PreviousTeamsNextPagerTree CLI: Command Line Interface

Last updated 1 year ago

Was this helpful?

  • A User represent a physical person.

  • A User can have many and .

  • A User is associated with one to many .

The User Object

Property
Type
Description

name

string[]

The user's full name.

time_zone

string[]

The user's time zone.

preferred_language

string

The user's preferred language.

last_sign_in_at

timestamp

A timestamp of when the user last logged in via the web interface.

emails[].id

string

The ID of the email object.

emails[].email

string

The email address.

emails[].primary

string[]

Boolean indicating if this is the user's primary email address.

phones[].id

string

ID of phone object.

phones[].prefix_id

string

Prefix ID of phone object.

phones[].phone

string

phones[].primary

boolean

Boolean indicating if this is the user's primary phone number.

phones[].country

string

ISO 3166 alpha-2 country code of the number (determined by PagerTree).

phones[].blocked

boolean

Boolean indicating whether this phone has been blocked.

Create a User

POST https://api.pagertree.com/api/v4/users

Allowed Parameters

def user_params
  params.permit(
    :name,
    :email,
    :notify_push,
    :notify_email,
    :notify_sms,
    :notify_voice,
    emails_attributes: [
      :id,
      :email,
      :primary
    ],
    phones_attributes: [
      :id,
      :phone,
      :confirmation_method,
      :primary
    ]
  )
end

Required Parameters

  • name

  • email

A default secure password will be created by PagerTree and assigned to the user (not applicable if using SSO on the account). The user will receive an email containing their username and password. If a user already exists in PagerTree they will receive an invite email where they can approve or deny joining your account. When the user logs in to PagerTree for the first time they will be guided through a setup process to confirm their phone number.

Example Request

POST https://api.pagertree.com/api/v4/users
{
  "name": "Bobby Hill",
  "email": "[email protected]"
}

Retrieve a User

GET https://api.pagertree.com/api/v4/users/:id

Update a User

PUT https://api.pagertree.com/api/v4/users/:id

Delete a User

List all Users

GET https://api.pagertree.com/api/v4/users

phone number.

This action is not supported. Please see the method.

E.164 format
Account Users
Emails
Phones
Delete a Account User