Skip to content

Self-serve signup → Stripe checkout

POST
/signup/checkout/
curl --request POST \
--url https://app.qsig.in/backend/othercompanyapi/signup/checkout/ \
--header 'Content-Type: application/json' \
--data '{ "first_name": "example", "company_name": "example", "email": "hello@example.com", "password": "example", "email_verified_ticket": "example", "tier": "starter", "cycle": "monthly" }'

Verify email first via /user/signup/verify-email/*. Returns a Stripe Checkout URL.

Media type application/json
object
first_name
required
string
company_name
required
string
email
required
string format: email
password
required

XOR-encrypted (see SDK)

string
email_verified_ticket
string
tier
required
string
Allowed values: starter pro enterprise
cycle
required
string
Allowed values: monthly annual

Checkout URL

Media type application/json
object
url
string
Example generated
{
"url": "example"
}