curl --request POST \
--url https://api.example.com/v2/users/register \
--header 'Content-Type: application/json' \
--data '
{
"type": "<string>",
"provider": "<string>",
"provider_account_id": "<string>",
"email": "<string>",
"name": "<string>",
"refresh_token": "<string>",
"access_token": "<string>",
"expires_at": 123,
"id_token": "<string>",
"scope": "<string>",
"session_state": "<string>",
"token_type": "<string>",
"username": "<string>",
"password": "<string>",
"slackCode": "<string>"
}
'