curl --request POST \
--url https://api.member.dev/api/v1/contact-auth/register \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"attributes": {
"email": "jsmith@example.com",
"redirect_url": "<string>",
"slug": "<string>",
"team_id": "<string>"
},
"type": "<string>"
}
}
'