Create a New User
- 01 Oct 2025
- 1 Minute to read
- Print
- DarkLight
Create a New User
- Updated on 01 Oct 2025
- 1 Minute to read
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback!
Post
/sys-rest-api/rest/1/sduser
UI Location: SYSTEM DATA - Security- Users- User Maintenance
postman-to-openapi
Body Parameters
The POST request creates a new user based on the provided payload. The payload includes various fields, such as VUser, VPortalLdapUser, VUsrPassword, VUsrPasswordRetype, VLdapServerName, VEmpNo, FirstName, VLastName, VCompCode, VEmail, VContactCode, VConfigCode, and VDefaultConsoleName each representing different attributes of the user.
Request Body
Field | Description | Data Type | Required | Example Value |
---|---|---|---|---|
VUser | User ID | string | True | Adam |
VPortalLdapUser | Login Name | string | True | Adam |
VUsrPassword | Password | string | True | * |
VUsrPasswordRetype | Re-Type Password | string | True | * |
VLdapServerName | LDAP Server Name (Case-Sensitive) | string | True, If not provided, the default LDAP server from system setup will be used | Default |
VEmpNo | Employee No | string | False | Adam2 |
VFirstName | First Name | string | True, If the employee number is provided, First name will be populated automatically | Adam |
VLastName | Last Name | string | True, If the employee number is provided, Last name will be populated automatically | Sandler |
VCompCode | Company code | string | True | ZZ |
VEmail | string | True | Adam@hotmail.com | |
VContactCode | Contact Code | string | False | ASandler3 |
VConfigCode | User Treeview | string | False | DFLT |
VDefaultConsoleName | Default Console | string | False | CONSOLE |
Sample Response Body
{
"VAddCode": null,
"VCompCode": "",
"VConfigCode": "",
"VConfigDesc": null,
"VContactCode": null,
"VCountry": null,
"VDbUserFlag": null,
"VDefaultConsoleDesc": null,
"VDefaultConsoleName": "",
"VEmail": "",
"VEmpNo": null,
"VFaxNum1": null,
"VFirstName": "",
"VIuCreateDate": null,
"VLastName": "",
"VPortalLdapUser": "",
"VPortalUser": null,
"VPostalCode": null,
"VRegionCode": null,
"VUser": "",
"VUsrPassword": "",
"VUsrPasswordRetype": "",
"VUuid": "",
"VWorkPhoneNum": null,
"VLdapServerName": "",
"links": [
{
"rel": "",
"href": "",
"name": "",
"kind": ""
}
]
}
Security
HTTP
Type basic
Basic authentication
Header parameters
Content-Type
string
Exampleapplication/vnd.oracle.adf.resourceItem+json
Body parameters
object
Example{ "VUser": "Adam", "VPortalLdapUser": "Adam", "VUsrPassword": "Adam1", "VUsrPasswordRetype": "Adam1", "VLdapServerName": "Default", "VEmpNo": "LA_005", "VFirstName": "Adam", "VLastName": "Sandler", "VCompCode": "ZZ", "VEmail": "Test@cmic.ca", "VContactCode": "ASandler12", "VConfigCode": "", "VDefaultConsoleName": "" }
Responses
201
Created
Headers
Content-Type
string
Exampleapplication/vnd.oracle.adf.resourceitem+json
{
"VAddCode": null,
"VCompCode": "ZZ",
"VConfigCode": "",
"VConfigDesc": null,
"VContactCode": "ASandler12",
"VCountry": null,
"VDbUserFlag": null,
"VDefaultConsoleDesc": null,
"VDefaultConsoleName": "",
"VEmail": "Test@cmic.ca",
"VEmpNo": null,
"VFaxNum1": null,
"VFirstName": "Adam",
"VIuCreateDate": null,
"VLastName": "Sandler",
"VPortalLdapUser": "Adam",
"VPortalUser": null,
"VPostalCode": null,
"VRegionCode": null,
"VUser": "Adam",
"VUsrPassword": " *******************",
"VUsrPasswordRetype": " *******************",
"VUuid": "39862B1553D724B9E0630B811DAC5177",
"VWorkPhoneNum": null,
"VLdapServerName": "Default",
"links": [
{
"rel": "self",
"href": "http://localhost:7101/sys-rest-api/rest/1/sduser/39862B1553D724B9E0630B811DAC5177",
"name": "sduser",
"kind": "item"
},
{
"rel": "canonical",
"href": "http://localhost:7101/sys-rest-api/rest/1/sduser/39862B1553D724B9E0630B811DAC5177",
"name": "sduser",
"kind": "item"
}
]
}
object