User Object

Defines the schema for configuring a User Account

API Endpointhttps://api.bigpanda.io/resources/v2.0/scim/Users
Supported MethodsPOST, GET, PATCH, DELETE

Parameters

The Users object schema includes the following attributes.

AttributeDescriptionType
idUnique identifier for the SCIM Resource as defined by the Service ProviderString
userNameUnique identifier for the User, typically used by the user to directly authenticate to BigPandaString
displayNameThe name of the user as displayed in the BigPanda UIString
metaTags containing metadata about the user account.

Attributes:
created - The DateTime ( ISO 8601) the resource was added to the Service Provider

location - The URI of the resource being returned
Object
activeIndicates if the user's administrative status is active and can authenticate to BigPanda.Boolean
passwordThe user's initial clear text password.
This attribute is used to specify an initial password when creating a new User.
This value will never be returned by a Service Provider in any form
String
phoneNumbersThe user’s phone number. BigPanda supports only 1 phone number per user

Attributes:
value - the string with the phone number

type - what type of number. Options are: work, home, other
Object
rolesA list of BigPanda roles assigned to the userArray of Strings

Sample Object:

{
  "id": "5f82d3495558352a180e51cb",
  "userName": "[email protected]",
  "displayName": "Stella R",
  "active": true,
  "meta": {
    "created": "2020-10-11T09:41:29.372Z",
    "location": "https://api.bigpanda.io/resources/v2.0/scim/Users/5f82d3495558352a180e51cb"
  },
  "schemas": [
    "urn:scim:schemas:core:1.0"
  ],
  "roles": [
    "admin",
    "user"
  ],
  "phoneNumbers": [
    {
      "value": "5556345375",
      "type": "other"
    }
  ]
}