PUT
/
client
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"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Client account details are required
client_id
string
Example:

"1"

email
string
Example:

"email@email.com"

Example:

"https://mywebsite.com/logo.png"

organization
string
Example:

"Organization name"

website
string
Example:

"https://website.com"

Response

200
application/json
Successful operation
message
string
Example:

"Account successfully updated"