

Creating Internal user in Adobe Learning Manager using Admin API
Steps to create the internal user using Admin API:
* Login as an Integration admin
* Goto to the Developer resources >> API reference
* Select the admin profile and authorize
* Goto the User : Set of User APIs
* use the Post call : Post: /Users
* use the below example body to add the users.
{
“data”: {
“type”: “user”,
“attributes”: {
“email”: “example@example.com”,
“name”: “Bob”,
“userType”: “INTERNAL”
}
}
}
* Click on the Try it out button to add the Internal user into the system
Steps to create the internal user using Admin API:
* Login as an Integration admin
* Goto to the Developer resources >> API reference
* Select the admin profile and authorize
* Goto the User : Set of User APIs
* use the Post call : Post: /Users
* use the below example body to add the users.
{
“data”: {
“type”: “user”,
“attributes”: {
“email”: “example@example.com”,
“name”: “Bob”,
“userType”: “INTERNAL”
}
}
}
* Click on the Try it out button to add the Internal user into the system
You must be logged in to post a comment.

- Most Recent
- Most Relevant