Developer Docs

Table of contents

Get contact fields

Using this method, you will get a list of custom contact fields.

To get a contact fields list, make a request to this URL:

GET http://one-api.bsg.world/api/contacts/fields

If request is successful, you will receive a response:

{
  "data": [
    {
      "type": "datetime",
      "id": 26130,
      "name": "Country",
      "description": "The country name",
      "is_visible": true
    },
    {
      "type": "dropdownlist",
      "dropdownlist": [
        "string"
      ],
      "id": 26130,
      "name": "Country",
      "description": "The country name",
      "is_visible": true
    }
  ]
}