Checks the activation status of a user based on the user ID.
curl --request GET \
--url https://api.helpyousponsor.com/v1/user/{id}/activation/status \
--header 'Authorization: Bearer <token>'
{
"activated": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
User ID to check activation status for
User activation status retrieved successfully
The response is of type object
.
curl --request GET \
--url https://api.helpyousponsor.com/v1/user/{id}/activation/status \
--header 'Authorization: Bearer <token>'
{
"activated": true
}