Create a User - Backoffice API

See this update published within our Backoffice API Reference: Create a User.


What's new?

The POST Create a User endpoint is now available in our Backoffice API Reference. This endpoint allows you to create a new user within your Backoffice tenant. The tenantId is a required path parameter. The userRole, Name, emailAddress, createdBy, submerchantIds, and doNotInheritChildMerchants values are passed in the request body.


Example

See an example request below that creates a user for Jane Doe.

{
   "userRole": "Analyst",
   "name": "Jane Doe",
   "emailAddress": "[email protected]"
   "createdBy": "John Doe",
   "submerchantIds": [ 100 ],
   "doNotInheritChildMerchants": true
}