Products & Services

Here you find all available endpoints related to Followup CRM Products & Services. 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/file-data/products-and-services

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/file-data/products-and-services?api_token=YOUR_API_TOKEN


Response

{
    "success": true,
    "message": "Products and Services Listing",
    "data": [
        {
            "id": 76,
            "team_id": 179,
            "code": "Replace",
            "short_description": "Replace",
            "full_description": "Replace",
            "load_order": 0
        },
        {
            "id": 71,
            "team_id": 179,
            "code": "Repair",
            "short_description": "Repair",
            "full_description": "Repair",
            "load_order": 1
        },
        {
            "id": 72,
            "team_id": 179,
            "code": "New Construction",
            "short_description": "New Construction",
            "full_description": "New Construction",
            "load_order": 2
        },
        {
            "id": 73,
            "team_id": 179,
            "code": "Service",
            "short_description": "Service",
            "full_description": "Service",
            "load_order": 3
        },
        {
            "id": 74,
            "team_id": 179,
            "code": "T&M",
            "short_description": "T&M",
            "full_description": "T&M",
            "load_order": 4
        },
        {
            "id": 75,
            "team_id": 179,
            "code": "Warranty",
            "short_description": "Warranty",
            "full_description": "Warranty",
            "load_order": 5
        }
    ]
}