Logo
30 Day Challange API Documentation

Create a user

POST https://api.getpostman.com/scim/v2/Users

Creates a new user account in Qodex and adds the user to your organization's Qodex team. If the account does not already exist, this also activates the user so they can authenticate in to your Qodex team.

If the account already exists, the system sends the user an [email invite] to join the Qodex team. The user joins the team once they accept the invite.

By default, the system assigns new users the developer role. You can [update user roles in Qodex]

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Authorization
string




RESPONSES

status Created

{ "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:User" ], "id": "405775fe15ed41872a8eea4c8aa2b38cda9749812cc55c99", "userName": "taylor-lee@example.com", "name": { "givenName": "Test", "familyName": "User" }, "emails": [ { "primary": true, "value": "taylor-lee@example.com", "type": "work", "display": "taylor-lee@example.com" } ], "externalId": "12345678", "active": true, "meta": { "resourceType": "User", "created": "2021-02-22T04:24:13.000Z", "lastModified": "2021-02-22T04:24:13.000Z" } }



Curl
curl -X POST 'https://api.getpostman.com/scim/v2/Users' -H 'Authorization: undefined'

ENDPOINTS