curl --request PUT \
--url https://api.helpyousponsor.com/v1/client \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"client_id": "1",
"email": "email@email.com",
"logo": "https://mywebsite.com/logo.png",
"organization": "Organization name",
"website": "https://website.com"
}'
{
"message": "Account successfully updated"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Client account details are required
The body is of type object
.
Successful operation
The response is of type object
.
curl --request PUT \
--url https://api.helpyousponsor.com/v1/client \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"client_id": "1",
"email": "email@email.com",
"logo": "https://mywebsite.com/logo.png",
"organization": "Organization name",
"website": "https://website.com"
}'
{
"message": "Account successfully updated"
}