- Getting Started
- Overview
- Authentication
- Pagination
- Querying and Sorting
- Rate Limit
- Scope
- Identity
- Activity
- Analytics
- Attachment
- Customer Table
- Create Customer Table
- Get All Customer Tables
- Get Count of All Customer Tables
- Get Customer Table by ID
- Patch Customer Table Attributes by ID
- Delete Customer Table by ID
- Add header to Customer Table
- Get all Customer Table Headers
- Get Customer Table Header by ID
- Patch Customer Table Header Attributes by ID
- Delete Customer Table Header by ID
- Add Record to Customer Table
- Get All Records in Customer Table
- Get Count of All Records in Customer Table
- Get Record in Customer Table by ID
- Filter Records in Customer Table
- Count of Filtered Records in Customer Table
- Patch Record Attributes in Customer Table by ID
- Delete Record in Customer Table by ID
- Card
- User Invite
- Global User Invite
- Identities
- Company
- Company Settings
- Global User
- Get All Global UsersGET
- Get Count Of All Global UsersGET
- Sign Up Global UserPOST
- Resend Confirmation PasscodePOST
- Confirm Sign UpPOST
- Sign InPOST
- Refresh TokenPOST
- Change passwordPOST
- Initiate Forward PasswordPOST
- Confirm Forgot PasswordPOST
- Get Global User By EmailPOST
- Get Global User by TokenGET
- Add Mobile App Device TokenPOST
- Remove Mobile App Device TokenPOST
- Get Global User By IDGET
- Patch Global User AttributesPATCH
- Delete Global User By IDDELETE
- Local User
- Security Group
- Get all Security Groups
- Create Security Group
- Filter Security Groups
- Add Local User in Security Group
- Remove Local User in Security Group
- Add User Group in Security Group
- Remove User Group in Security Group
- Check if Local User can perform Action on Feature
- Check if Local User can perform Action on Feature Batch
- Get All Actions Local User can perform on feature
- Get all Security Groups by Feature & Action
- Get Security Group by ID
- Get Security Group by ID Copy
- User Group
- Get all User Groups
- Create User Group
- Filter User Groups
- Add Local User to User Group
- Remove Local User from User Group
- Add User Group to User Group
- Remove Local User from User Group Copy
- Check Local User Membership in User Group
- Get all User Groups a Local User is member of
- Get all User Groups a Local User is directly member of
- Get all User Groups a User Group is member of
- Create User Group by ID
- Patch User Group Attributes by ID
- Delete User Group by ID
- Template
- Create Template
- Create Template from System Template
- Get All Templates in Category
- Get Count of All Templates in Category
- Filter All Templates in Category
- Count of Filtered Templates in Category
- Get Templates by ID in Category
- Resolve Template by ID
- Patch Templates Attributes by ID in Category
- Delete Templates by ID in Category
- Schedulable Trigger
- User Todo
- Workflow
Sign Up Global User
QAL
QAL
POST
/v1/identityManagement/globalUsers/signup
Request
Body Params application/json
name
stringÂ
Name of global user to create
Example:
Manupriyam Jindal
email
string <email>
Email of global user to create
Example:
manupriyamjindal@gmail.com
password
stringÂ
Password of global user to create
profileImageUrl
stringÂ
Public URL for the profile image
defaultLanguage
stringÂ
Default User Locale
Default:
en_IN
Match pattern:
^[a-z]{2}_([a-z]{2}|[A-Z]{2})$
defaultTimezone
stringÂ
Timezone for the global user
Default:
Asia/Kolkata
Example:
Asia/Kolkata
phoneNumber
object (PhoneNumberContact)Â
Phone Number of the global user
countryCode
stringÂ
Country code
Default:
91
Example:
91
Match pattern:
/^(\+?\d{1,3}|\d{1,4})$/
phoneNumber
stringÂ
Mobile Number
Example:
9355923751
Match pattern:
/^(\+\d{1,3}[- ]?)?\d{10}$/
mobileAppDeviceTokens
array[object (MobileAppDeviceToken) {3}]Â
Mobile app device tokens of the global user
mobileAppPlatform
enum<string>Â
required
Allowed values:
IOSANDROID
deviceToken
stringÂ
required
tokenCreationDate
string <date-time>
Timestamp of token creation
Example
{
"name": "Manupriyam Jindal",
"email": "manupriyamjindal@gmail.com",
"password": "string",
"profileImageUrl": "string",
"defaultLanguage": "en_IN",
"defaultTimezone": "Asia/Kolkata",
"phoneNumber": {
"countryCode": "91",
"phoneNumber": "9355923751"
},
"mobileAppDeviceTokens": [
{
"mobileAppPlatform": "IOS",
"deviceToken": "string",
"tokenCreationDate": "2019-08-24T14:15:22Z"
}
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.qal.eazy2biz.com/v1/identityManagement/globalUsers/signup' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
_id
stringÂ
ID of the global user
name
stringÂ
optional
email
stringÂ
optional
profileImageUrl
stringÂ
optional
defaultLanguage
stringÂ
optional
defaultTimezone
stringÂ
optional
phoneNumber
objectÂ
PhoneNumberContact
countryCode
stringÂ
Country code
Default:
91
Example:
91
Match pattern:
/^(\+?\d{1,3}|\d{1,4})$/
phoneNumber
stringÂ
Mobile Number
Example:
9355923751
Match pattern:
/^(\+\d{1,3}[- ]?)?\d{10}$/
companyMemberships
array[object (GlobalUserCompanyMembership) {3}]Â
optional
companyId
numberÂ
required
localUserId
stringÂ
required
localUserEnabled
booleanÂ
required
awsCognitoUserId
stringÂ
optional
mobileAppDeviceTokens
array[object (MobileAppDeviceToken) {3}]Â
optional
mobileAppPlatform
enum<string>Â
MobileAppPlatform
Allowed values:
IOSANDROID
deviceToken
stringÂ
required
tokenCreationDate
string <date-time>
Timestamp of token creation
details
objectÂ
Details
name
stringÂ
required
companyId
numberÂ
required
description
stringÂ
optional
metaData
objectÂ
MetaData
createdBy
stringÂ
required
lastUpdatedBy
stringÂ
required
createdDate
string <date-time>
required
lastUpdatedDate
string <date-time>
required
version
numberÂ
required
enabled
booleanÂ
required
Example
{
"_id": "string",
"name": "string",
"email": "string",
"profileImageUrl": "string",
"defaultLanguage": "string",
"defaultTimezone": "string",
"phoneNumber": {
"countryCode": "91",
"phoneNumber": "9355923751"
},
"companyMemberships": [
{
"companyId": 0,
"localUserId": "string",
"localUserEnabled": true
}
],
"awsCognitoUserId": "string",
"mobileAppDeviceTokens": [
{
"mobileAppPlatform": "IOS",
"deviceToken": "string",
"tokenCreationDate": "2019-08-24T14:15:22Z"
}
],
"details": {
"name": "string",
"companyId": 0,
"description": "string"
},
"metaData": {
"createdBy": "string",
"lastUpdatedBy": "string",
"createdDate": "2019-08-24T14:15:22Z",
"lastUpdatedDate": "2019-08-24T14:15:22Z",
"version": 0
},
"enabled": true
}
Modified at 2024-07-07 14:23:02