Create user (vendor-scoped)
curl --request POST \
--url https://production-api.puppetvendors.com/users \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"email": "user@example.com",
"name": "John Doe",
"password": "securePassword123",
"type": "vendor",
"vendorId": "507f1f77bcf86cd799439011",
"approved": true
}
'import requests
url = "https://production-api.puppetvendors.com/users"
payload = {
"email": "user@example.com",
"name": "John Doe",
"password": "securePassword123",
"type": "vendor",
"vendorId": "507f1f77bcf86cd799439011",
"approved": True
}
headers = {
"x-access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
email: 'user@example.com',
name: 'John Doe',
password: 'securePassword123',
type: 'vendor',
vendorId: '507f1f77bcf86cd799439011',
approved: true
})
};
fetch('https://production-api.puppetvendors.com/users', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://production-api.puppetvendors.com/users",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'email' => 'user@example.com',
'name' => 'John Doe',
'password' => 'securePassword123',
'type' => 'vendor',
'vendorId' => '507f1f77bcf86cd799439011',
'approved' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://production-api.puppetvendors.com/users"
payload := strings.NewReader("{\n \"email\": \"user@example.com\",\n \"name\": \"John Doe\",\n \"password\": \"securePassword123\",\n \"type\": \"vendor\",\n \"vendorId\": \"507f1f77bcf86cd799439011\",\n \"approved\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://production-api.puppetvendors.com/users")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"email\": \"user@example.com\",\n \"name\": \"John Doe\",\n \"password\": \"securePassword123\",\n \"type\": \"vendor\",\n \"vendorId\": \"507f1f77bcf86cd799439011\",\n \"approved\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://production-api.puppetvendors.com/users")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"email\": \"user@example.com\",\n \"name\": \"John Doe\",\n \"password\": \"securePassword123\",\n \"type\": \"vendor\",\n \"vendorId\": \"507f1f77bcf86cd799439011\",\n \"approved\": true\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"_id": "507f1f77bcf86cd799439012",
"email": "user@example.com",
"name": "John Doe",
"type": "vendor",
"vendorId": "507f1f77bcf86cd799439011",
"approved": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}Users
Create user (vendor-scoped)
Create a new user account. Merchant scope only.
POST
/
users
Create user (vendor-scoped)
curl --request POST \
--url https://production-api.puppetvendors.com/users \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"email": "user@example.com",
"name": "John Doe",
"password": "securePassword123",
"type": "vendor",
"vendorId": "507f1f77bcf86cd799439011",
"approved": true
}
'import requests
url = "https://production-api.puppetvendors.com/users"
payload = {
"email": "user@example.com",
"name": "John Doe",
"password": "securePassword123",
"type": "vendor",
"vendorId": "507f1f77bcf86cd799439011",
"approved": True
}
headers = {
"x-access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
email: 'user@example.com',
name: 'John Doe',
password: 'securePassword123',
type: 'vendor',
vendorId: '507f1f77bcf86cd799439011',
approved: true
})
};
fetch('https://production-api.puppetvendors.com/users', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://production-api.puppetvendors.com/users",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'email' => 'user@example.com',
'name' => 'John Doe',
'password' => 'securePassword123',
'type' => 'vendor',
'vendorId' => '507f1f77bcf86cd799439011',
'approved' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://production-api.puppetvendors.com/users"
payload := strings.NewReader("{\n \"email\": \"user@example.com\",\n \"name\": \"John Doe\",\n \"password\": \"securePassword123\",\n \"type\": \"vendor\",\n \"vendorId\": \"507f1f77bcf86cd799439011\",\n \"approved\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://production-api.puppetvendors.com/users")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"email\": \"user@example.com\",\n \"name\": \"John Doe\",\n \"password\": \"securePassword123\",\n \"type\": \"vendor\",\n \"vendorId\": \"507f1f77bcf86cd799439011\",\n \"approved\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://production-api.puppetvendors.com/users")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"email\": \"user@example.com\",\n \"name\": \"John Doe\",\n \"password\": \"securePassword123\",\n \"type\": \"vendor\",\n \"vendorId\": \"507f1f77bcf86cd799439011\",\n \"approved\": true\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"_id": "507f1f77bcf86cd799439012",
"email": "user@example.com",
"name": "John Doe",
"type": "vendor",
"vendorId": "507f1f77bcf86cd799439011",
"approved": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}Authorizations
JWT minted from a merchant API key (mk_live_…) by POST /authenticate. Send the token value directly, with no "Bearer" prefix. Tokens last 14 days and can be renewed at POST /refresh-token; revoking the key refuses the next request made with any token minted from it.
Body
application/json
User email address
Example:
"user@example.com"
User full name
Example:
"John Doe"
User password
Example:
"securePassword123"
User type
Available options:
vendor, merchant, admin Example:
"vendor"
Associated vendor ObjectId
Example:
"507f1f77bcf86cd799439011"
Whether user is approved
Example:
true
Was this page helpful?