Creates a new user
post
/learn.rest/v1/users
Providing createMembershipResource for a User object is optional. if we provide this, you can create a membership for a newly created user in this post request.
Request
Supported Media Types
- application/json
User object that needs to be created.
Root Schema : CreateUserRequest
Type:
object
Object comprising the user parameters and the membership parameters to create a new user and to add a membership.
Show Source
-
city(optional):
string
The city of the user.
-
company(optional):
string
The User's place of work.
-
country(optional):
string
The country of the user.
-
createMembershipResourceForUser(optional):
object MembershipForCreateUserRequest
Object comprising parameters to add users to a membership.
-
department(optional):
string
The User's department.
-
email(optional):
string
The User's email address.
-
email2(optional):
string
The secondary email address.
-
employeeId(optional):
string
Email address of the employee.
-
fax(optional):
string
The fax number of the user.
-
firstName(optional):
string
Description of the user.
-
gender(optional):
string
Allowed Values:
[ "male", "female" ]
User gender. Enum for gender are: male, female -
includeInSearchFlag(optional):
boolean
Default Value:
false
Whether the user created should be visible in searches. -
jobTitle(optional):
string
The User's job title.
-
lastName(optional):
string
Description of the user.
-
managerName(optional):
string
The User's manager's name.
-
officeName(optional):
string
The User's office.
-
pager(optional):
string
The pager number of the user.
-
pagerInteractive(optional):
string
The User's interactive pager number.
-
participatesInDaylight(optional):
boolean
Default Value:
true
Whether the user's timezone observes daylight savings -
passwordValidUntilDate(optional):
string
The date until which the password is valid.
-
phoneDaytime(optional):
string
The day time number of the user.
-
phoneEvening(optional):
string
The evening number of the user.
-
phoneMobile(optional):
string
The mobile number of the user.
-
postalCode(optional):
string
The postal code of the user.
-
profession(optional):
string
-
ssn(optional):
string
The user's social security number.
-
state(optional):
string
The state of the user.
-
street1(optional):
string
The street text address of the user.
-
street2(optional):
string
The street text address of the user.
-
timeZone(optional):
string
The User's timezone
-
username(optional):
string
Username of the user
Example:
{
"username":"cwallace",
"firstName":"Chris",
"lastName":"Wallace",
"street1":"500 Oracle Parkway",
"street2":"suite 500",
"city":"Redwood Shores",
"state":"CA",
"postalCode":"94065",
"country":"US",
"officeName":"HQ",
"gender":"male",
"includeInSearchFlag":true,
"jobTitle":"Product Manager",
"managerName":"n/a",
"pagerInteractive":"n/a",
"ssn":"n/a",
"email2":"n/a",
"pager":"n/a",
"company":"Oracle",
"fax":"n/a",
"department":"Product Development",
"phoneEvening":"n/a",
"email":"info@oracle.com",
"phoneDaytime":"+1.650.506.7000",
"profession":"Product Management",
"phoneMobile":"+1.800.392.2999",
"employeeId":"n/a",
"passwordValidUntilDate":"2016-10-12T11:00:00-04:00",
"timeZone":"Eastern Standard Time",
"participatesInDaylight":true,
"createMembershipResourceForUser":{
"learncenterId":"178409",
"status":"Approved",
"validFromDate":"2019-03-04T11:00:00-04:00",
"validUntilDate":"2019-03-09T11:00:00-05:00"
}
}
Nested Schema : MembershipForCreateUserRequest
Type:
object
Object comprising parameters to add users to a membership.
Show Source
-
learncenterId:
number(int32)
Unique identifier of the LearnCenter.Example:
178409
-
status:
string
Enum for membership status are: pending, approved, removed and denied.Example:
approved
-
validFromDate(optional):
string(date-time)
Date from which the membership is valid.
-
validUntilDate(optional):
string(date-time)
Date till which the membership is until.
Example:
{
"learncenterId":"178409",
"status":"approved",
"validFromDate":"2019-03-04T11:00::00-04:00",
"validUntilDate":"2019-03-09T11:00:00-05:00"
}
Security
-
auth: basic
Type:
basic
Description:Basic Authentication
Response
Supported Media Types
- application/xml
- application/json
201 Response
New user created.
Root Schema : UsersResponse
Type:
Show Source
object
-
count(optional):
number
-
hasMore(optional):
boolean
-
items(optional):
array items
-
limit(optional):
number
-
links(optional):
array links
Example:
{
"items":[
{
"id":628706,
"roleId":640,
"user":{
"links":[
{
"rel":"canonical",
"href":"https://{url}/learn.rest/v1/users/628706"
}
]
},
"userRole":{
"links":[
{
"rel":"canonical",
"href":"https://{url}/learn.rest/v1/learnCenters/178409/userRoles/640"
}
]
},
"statusFlag":true,
"links":[
{
"rel":"canonical",
"href":"https://{url}/learn.rest/v1/learnCenters/178409/userRoles/640/users/628706"
}
]
},
{
"...":null
}
],
"limit":100,
"count":100,
"hasMore":true,
"links":[
{
"rel":"canonical",
"href":"https://{url}/learn.rest/v1/learnCenters/178409/userRoles/640/users"
}
]
}
Nested Schema : UserRoleUserResponse
Type:
Show Source
object
-
createdDate(optional):
string
Example:
2019-02-04T10:46:21Z
-
links(optional):
array links
-
roleId(optional):
number
Example:
640
-
statusFlag(optional):
boolean
Example:
true
-
user(optional):
object user
-
userId(optional):
number
Example:
123123
-
userRole(optional):
object userRole
Nested Schema : links
Type:
Show Source
array
Example:
[
{
"rel":"canonical",
"href":"https://{url}/learn.rest/v1/learnCenters/178409/userRoles/123/users"
}
]
Nested Schema : links
Type:
Show Source
array
-
Array of:
object UserLinkItem
Object of the User Link Item.
Nested Schema : UserLinkItem
Type:
object
Object of the User Link Item.
Show Source
-
href(optional):
string
Example:
{url}/learn.rest/v1/users/456
-
rel(optional):
string
Example:
canonical
Example:
{
"rel":"canonical",
"href":"{url}/learn.rest/v1/users/456"
}
Nested Schema : UserRoleLinkItem
Type:
Show Source
object
Example:
{
"rel":"canonical",
"href":"https://{url}/learn.rest/v1/learnCenters/178409/userRoles/639"
}
400 Response
Request has incorrect syntax or does not contain a field that is required.
409 Response
Another resource with the same identifier already exists.
500 Response
Internal server error.