Browse the Help Center for platform guides or API & Developers for integration docs.
curl --request POST \
--url https://open.beatpass.ca/api/v1/auth/register \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "[email protected]",
"password": "password",
"token_name": "iphone 12"
}
'{
"status": "success",
"user": {
"id": 123,
"display_name": "<string>",
"avatar": "<string>"
}
}curl --request POST \
--url https://open.beatpass.ca/api/v1/auth/register \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "[email protected]",
"password": "password",
"token_name": "iphone 12"
}
'{
"status": "success",
"user": {
"id": 123,
"display_name": "<string>",
"avatar": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
"password"
"iphone 12"
Was this page helpful?