curl --request POST \
--url https://api.example.com/auth/social-media-signup \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"auth0UserID": "<string>",
"code": "<string>",
"isSigningUp": true
}
'{
"success": true,
"data": "<unknown>"
}Gets access token to signup using different social media providers.
curl --request POST \
--url https://api.example.com/auth/social-media-signup \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"auth0UserID": "<string>",
"code": "<string>",
"isSigningUp": true
}
'{
"success": true,
"data": "<unknown>"
}