Custom Fields

Here you find all available endpoints related to Followup CRM contacts. These endpoints are protected and you'll need an API Token.


In order to use the GET and POST requests, add to the header the following:

Key Value
Content-Type application/json
Accept application/json

Methods Availables:

GET /api/v1/custom-fields


GET /api/v1/custom-fields

Path Parameters

Key Description Default
api_token
string | REQUIRED
The API token generated throught UI interface on Followup CRM platform. None

Examples


Request Example

/api/v1/custom-fields?api_token=YOUR_API_TOKEN


Response

{
    "success": true,
    "message": "Custom Listing",
    "data": [
        {
            "id": 1,
            "type": 3,
            "label_value": "Dead Reason",
            "name": "Dead Reason",
            "load_order": 1,
            "enabled": 1,
            "team_id": 1,
            "created_at": "2021-02-18T08:20:52.000000Z",
            "updated_at": "2021-02-18T08:20:52.000000Z",
            "deleted_at": null
        },
        {
            "id": 2,
            "type": 3,
            "label_value": "Segment",
            "name": "Segment",
            "load_order": 2,
            "enabled": 1,
            "team_id": 1,
            "created_at": "2021-02-18T08:22:44.000000Z",
            "updated_at": "2021-02-18T08:22:44.000000Z",
            "deleted_at": null
        },
        {
            "id": 3,
            "type": 3,
            "label_value": "NPS Score",
            "name": "NPS Score",
            "load_order": 3,
            "enabled": 1,
            "team_id": 1,
            "created_at": "2021-02-18T08:24:26.000000Z",
            "updated_at": "2021-02-18T08:24:26.000000Z",
            "deleted_at": null
        }
    ]
}