Path parameters

  • contact_id integer(int32) Required

    ID of contact to update

Query parameters

  • name string Required

    Name of contact

  • contact_type_id integer(int32)

    ID of contact type

  • important string

    Important notes for this contact

Responses

  • 200 application/json

    Contact updated successfully

  • 400 application/json

    A validation error occurred

    Hide response attributes Show response attributes object
    • code integer(int32) Required
    • message string Required
  • 500 application/json

    An unexpected error occurred

    Hide response attributes Show response attributes object
    • code integer(int32) Required
    • message string Required
PUT /contacts/{contact_id}
curl \
 --request PUT 'https://*.syngency.com/admin/api/contacts/{contact_id}?name=string'
Response examples (200)
[
  [
    []
  ]
]
Response examples (400)
{
  "code": 42,
  "message": "string"
}
Response examples (500)
{
  "code": 42,
  "message": "string"
}