Customers
Wallets
Invoices
Entitlements
Environments
Events
Features
Payments
Integrations
Subscriptions
Tenants
Users
Auth
Sign up
Sign up a new user
POST
/
auth
/
signup
curl --request POST \
--url https://api.cloud.flexprice.io/v1/auth/signup \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>",
"password": "<string>",
"tenant_name": "<string>",
"token": "<string>"
}'
{
"tenant_id": "<string>",
"token": "<string>",
"user_id": "<string>"
}
Body
application/json
Sign up request
The body is of type object
.
Response
200
application/json
OK
The response is of type object
.
curl --request POST \
--url https://api.cloud.flexprice.io/v1/auth/signup \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>",
"password": "<string>",
"tenant_name": "<string>",
"token": "<string>"
}'
{
"tenant_id": "<string>",
"token": "<string>",
"user_id": "<string>"
}