Users
Create User
Create a new user on the Forestreet platform.
POST
/
users
Authorization
Body
curl --request POST \
--url https://api-dev.forestreet.com/users \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '{
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>"
}'
Body
email
string
The new user’s email address
firstName
string
The new user’s first name
lastName
string
The new user’s last name
On creation, the user will be sent an email with instructions to create a password for their account.
curl --request POST \
--url https://api-dev.forestreet.com/users \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '{
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>"
}'