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

  • 201 application/json

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