Skip to main content
PUT
/
contacts
/
update
/
{contact_id}
Update Contact
curl --request PUT \
  --url https://api.swoogo.com/api/v1/contacts/update/{contact_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data email=atomkiewicz@hotmail.com \
  --data first_name=Aleshia \
  --data last_name=Tomkiewicz

Authorizations

Authorization
string
header
required

OAuth 2.0 bearer token obtained from POST /oauth2/token. Tokens expire after 30 minutes. Include in the Authorization header as Bearer {access_token}.

Path Parameters

contact_id
integer
required

integer - required - The ID of the contact you want to update

Example:

1

Body

application/x-www-form-urlencoded
email
string
Example:

"atomkiewicz@hotmail.com"

first_name
string
Example:

"Aleshia"

last_name
string
Example:

"Tomkiewicz"

Response

200 - undefined