POST /contacts/{contact_id}/users

Path parameters

  • contact_id string Required

    ID of contact to add user to

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

  • 201 application/json

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