Pre-Qualification - Find Problems

Here you find all available endpoints related to Followup CRM Pre-Qualification - Find Problems. 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/pre-qualification/find-problems

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/pre-qualification/find-problems?api_token=YOUR_API_TOKEN


Response

{
    "success": true,
    "message": "Pre-Qualification Find Problems Listing",
    "data": [
        {
            "id": 1,
            "team_id": 179,
            "code": "FP # 1",
            "short_description": "FP # 1",
            "full_description": "FP # 1",
            "load_order": 0
        },
        {
            "id": 2,
            "team_id": 179,
            "code": "FP # 2",
            "short_description": "FP # 2",
            "full_description": "FP # 2",
            "load_order": 0
        }
    ]
}