PUT /contacts/{contact_id}/users/{user_id}

Path parameters

  • contact_id string Required

    ID of contact that user belongs to

  • user_id string Required

    ID of user to update

Query parameters

  • first_name string Required

    User's first name

  • last_name string Required

    User's last name

  • email string Required

    User's email address

Responses

  • 200 application/json

    Contact user 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}/users/{user_id}
curl \
 --request PUT 'https://*.syngency.com/admin/api/contacts/{contact_id}/users/{user_id}?first_name=string&last_name=string&email=string'
Response examples (200)
[
  [
    []
  ]
]
Response examples (400)
{
  "code": 42,
  "message": "string"
}
Response examples (500)
{
  "code": 42,
  "message": "string"
}