Create a user
POSThttps://embedded.runalloy.com/2024-03//users/
Creates a new user in your Embedded account. The user record acts like a "container" to store all the integrations, workflows, and credentials for any given user. Returns a user identifier.
Request
Header Parameters
Authorization stringrequired
Default value: bearer YOUR_API_KEY
- application/json
Body
fullName string
The name of the user you want to create. Typically a full name.
username stringrequired
The username to be associated with the user. To easily identify a customer, we recommend using a friendly username such as an email for example. The username must be unique (this acts as an identifier to reference and lookup a given merchant on your platform).
Responses
- 200
- 401
200
- application/json
- Schema
- Example (from schema)
- Result
Schema
userId string
{
"userId": "xyz123abc098754"
}
{
"userId": "xyz123abc098754"
}
401
- application/json
- Schema
- Example (from schema)
- Result
Schema
object
{}
{}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://embedded.runalloy.com/2024-03/users/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"fullName": "string",
"username": "string"
}'
ResponseClear