/1/ User - Post
Overview
The /1/user endpoint provides for the creation of new users.
Beta API
NOTE: This API is currently in beta and applies only to the 'iFrame' API customers.
Key | Value | Example |
---|---|---|
User-Agent | <company identifier> | The exact value here is not important, but it should include something to identify your company |
Accept | application/json | |
Authorization | Bearer <your token> | Bearer wV1MLk5+sFzioJw/3M5r9A== |
Code Example
curl --location 'https://api-sandbox.vbmappapp.com/1/user' \
--header 'User-Agent: dmtd-rest-api' \
--header 'Authorization: Bearer YOUR TOKEN ' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{ "code": "EX1234", "firstName": "Henry", "lastName": "Smith", "email": "[email protected]" }'
Example Response
{
"firstName": "user",
"lastName": "reseller",
"email": "[email protected]",
"locale": "en",
"code": "reselleruser",
"updatedAt": "2025-06-09T08:41:33.000000Z",
"createdAt": "2025-06-09T08:41:33.000000Z",
"id": 321
}
Updated 24 days ago