Registration API
Authorization
X-API-Key
<token>In: header
Request Body
application/json
Requiredusername
Requiredstringpassword
Requiredstringemail
Requiredstringeverflow
Requiredstringlp
Requiredstringip
RequiredstringutmParams
RequiredobjectResponse Body
TypeScript Definitions
Use the response body type in TypeScript.
success
RequiredbooleanloginUrl
Requiredstringcurl -X POST "https://api.cherry.tv/account/v1/registration" \
-H "X-API-Key: <token>" \
-H "Content-Type: application/json" \
-d '{
"username": "string",
"password": "string",
"email": "string",
"everflow": "string",
"lp": "string",
"ip": "string",
"utmParams": {}
}'
{
"success": true,
"loginUrl": "string"
}