v1

OpenAPI 3.0.02026-08-04109109370.6 KB
Contacts (People)

Get the fields for a contact

Get the list of fields that can possibly be associated with contacts, along with whether they are valid for filtering sorting.

get/contacts/list/fields

Response

Contact fields

Example response

{
  "properties": {
    "exampleProperty": {
      "type": "string",
      "title": "Example Property",
      "description": "This is an example property",
      "isFilterable": true,
      "isDisplayable": true,
      "isSortable": true,
      "isAddable": true,
      "isBoardable": true,
      "isNullable": true,
      "relationships": [
        "users",
        "teams"
      ],
      "enum": [
        "Option1",
        "Option2"
      ],
      "format": "uri"
    }
  }
}