Create Users

Creates a new user

🚧

Authentication

All BigPanda APIs require Bearer Token Authorization in the call headers.

This API uses the User API Key type of Authorization token.

Sample Call

curl --request POST \
     --url https://api.bigpanda.io/resources/v2.0/scim/Users \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
     "phoneNumbers": [
          {
               "value": "1-555-555-5555",
               "type": "home"
          }
     ],
     "roles": [
          "user"
     ],
     "userName": "[email protected]",
     "displayName": "Becky Sterling",
     "password": "Password!123",
     "active": true
}
'
curl --request POST \
     --url https://eu-api.bigpanda.io/resources/v2.0/scim/Users \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
     "phoneNumbers": [
          {
               "value": "1-555-555-5555",
               "type": "home"
          }
     ],
     "roles": [
          "user"
     ],
     "userName": "[email protected]",
     "displayName": "Becky Sterling",
     "password": "Password!123",
     "active": true
}
'
Language