Handles user login.
curl --request POST \
--url https://api.helpyousponsor.com/v1/login \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com",
"password": "<string>"
}'
{
"status": "<string>",
"client_status": "<string>",
"organization": "<string>",
"website": "<string>",
"token": "<string>",
"org_created_at": "<string>",
"last_payment_date": "<string>",
"last_payment_amount": "<string>",
"monthly_payment": "<string>",
"user": {},
"plan": "<string>",
"permissions": {}
}
Login credentials
The body is of type object
.
Login successful
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/login \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com",
"password": "<string>"
}'
{
"status": "<string>",
"client_status": "<string>",
"organization": "<string>",
"website": "<string>",
"token": "<string>",
"org_created_at": "<string>",
"last_payment_date": "<string>",
"last_payment_amount": "<string>",
"monthly_payment": "<string>",
"user": {},
"plan": "<string>",
"permissions": {}
}