Record Detail Custom Field

Here you find all available endpoints related to Followup CRM Record Detail Custom Field. 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

GET /api/v1/record-detail-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/record-detail-custom-fields?api_token=YOUR_API_TOKEN


Response

{
    "success": true,
    "message": "Record Details Custom Fields Listing",
    "data": [
        {
            "id": 1,
            "team_id": 179,
            "name": "Base User",
            "label_value": "Base User",
            "load_order": 1,
            "type": 1,
            "field_type": "Dropdown (Single Select)",
            "enabled": 1,
            "options": [
                {
                    "id": 2206,
                    "name": "Jacob",
                    "load_order": null,
                    "enabled": null,
                    "description": null,
                    "record_detail_custom_field_id": null
                },
                {
                    "id": 2205,
                    "name": "Jason Rod",
                    "load_order": null,
                    "enabled": null,
                    "description": null,
                    "record_detail_custom_field_id": null
                },
                {
                    "id": 2207,
                    "name": "Kate Long",
                    "load_order": null,
                    "enabled": null,
                    "description": null,
                    "record_detail_custom_field_id": null
                },
                {
                    "id": 2204,
                    "name": "Nisha John",
                    "load_order": null,
                    "enabled": null,
                    "description": null,
                    "record_detail_custom_field_id": null
                },
                {
                    "id": 2203,
                    "name": "Zaman Javed",
                    "load_order": null,
                    "enabled": null,
                    "description": null,
                    "record_detail_custom_field_id": null
                }
            ]
        },
        {
            "id": 4,
            "team_id": 179,
            "name": "Well Text",
            "label_value": "Well Text",
            "load_order": 4,
            "type": 2,
            "field_type": "Text",
            "enabled": 1,
            "options": []
        },
        {
            "id": 5,
            "team_id": 179,
            "name": "Special Dropdown",
            "label_value": "Special Dropdown",
            "load_order": 5,
            "type": 3,
            "field_type": "Dropdown (Single Select)",
            "enabled": 1,
            "options": [
                {
                    "id": 4,
                    "name": "RTE",
                    "load_order": 1,
                    "enabled": 1,
                    "description": "RTE",
                    "record_detail_custom_field_id": 5
                },
                {
                    "id": 5,
                    "name": "YUT",
                    "load_order": 2,
                    "enabled": 1,
                    "description": "2",
                    "record_detail_custom_field_id": 5
                },
                {
                    "id": 6,
                    "name": "FGF",
                    "load_order": 3,
                    "enabled": 1,
                    "description": "FGF",
                    "record_detail_custom_field_id": 5
                }
            ]
        },
        {
            "id": 6,
            "team_id": 179,
            "name": "Date",
            "label_value": "Date",
            "load_order": 6,
            "type": 4,
            "field_type": "Date",
            "enabled": 1,
            "options": []
        }
    ]
}