Get list of contacts using advanced filters

GET /api-v1/contact/advanced

Headers

  • TARGET-ORGANIZATION-ID integer(int32)

    ID of organization, for which the operation must be performed

  • WEAL-TOKEN string Required

    API token (can be retrieved from account settings)

Responses

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • archived boolean
    • clientOrderValidity integer
    • contactType string

      Values are ORGANIZATION or PERSON.

    • creatorContactId integer
    • email string
    • externalId string
    • hasWarnings boolean
    • id integer
    • isCustomer boolean
    • isEmployee boolean
    • isStaff boolean
    • isUser boolean
    • isVendor boolean
    • name string
    • organizationId integer
    • tenantId integer
    • warnings string
  • 400

    400 Bad Request

  • 401

    401 Unauthorized

  • 403

    403 Access Denied

  • 404

    404 Not Found

  • 500

    500 Internal Server Error

GET /api-v1/contact/advanced
curl \
 --request GET 'https://wyzio.app/api-v1/contact/advanced' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "archived": true,
    "clientOrderValidity": 42,
    "contactType": "ORGANIZATION",
    "creatorContactId": 42,
    "email": "string",
    "externalId": "string",
    "hasWarnings": true,
    "id": 42,
    "isCustomer": true,
    "isEmployee": true,
    "isStaff": true,
    "isUser": true,
    "isVendor": true,
    "name": "string",
    "organizationId": 42,
    "tenantId": 42,
    "warnings": "string"
  }
]