Create User
POSThttps://embedded.runalloy.com/2024-03/one/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 merchant. 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. Must be unique (this acts as an identifier to reference and lookup a given merchant on your platform. Typically this is an email).
Responses
- 200
- 400
200
- application/json
- Schema
- Example (from schema)
- Result
Schema
userId string
{
"userId": "65622d1c85hg41478a468e85"
}
{
"userId": "65622d1c85hg41478a468e85"
}
400
- 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/one/users' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"fullName": "string",
"username": "string"
}'
ResponseClear