Client Profile

Here you find all available endpoints related to Followup CRM Client Profile. 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/client-profile

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/client-profile?api_token=YOUR_API_TOKEN


Response

{
    "success": true,
    "message": "Client Profile Listing",
    "data": [
        {
            "id": 155,
            "team_id": 179,
            "code": "Auto dealer",
            "short_description": "Auto dealer",
            "full_description": "Auto dealer",
            "load_order": 1
        },
        {
            "id": 159,
            "team_id": 179,
            "code": "Residential",
            "short_description": "Residential",
            "full_description": "Residential",
            "load_order": 2
        },
        {
            "id": 156,
            "team_id": 179,
            "code": "Bank",
            "short_description": "Bank",
            "full_description": "Bank",
            "load_order": 3
        },
        {
            "id": 157,
            "team_id": 179,
            "code": "Church",
            "short_description": "Church",
            "full_description": "Church",
            "load_order": 4
        },
        {
            "id": 158,
            "team_id": 179,
            "code": "Condo",
            "short_description": "Condo",
            "full_description": "Condo",
            "load_order": 5
        },
        {
            "id": 160,
            "team_id": 179,
            "code": "Multi Family",
            "short_description": "Multi Family",
            "full_description": "Multi Family",
            "load_order": 6
        },
        {
            "id": 161,
            "team_id": 179,
            "code": "Hospital",
            "short_description": "Hospital",
            "full_description": "Hospital",
            "load_order": 7
        },
        {
            "id": 162,
            "team_id": 179,
            "code": "Hotel",
            "short_description": "Hotel",
            "full_description": "Hotel",
            "load_order": 8
        },
        {
            "id": 163,
            "team_id": 179,
            "code": "Retail",
            "short_description": "Retail",
            "full_description": "Retail",
            "load_order": 9
        },
        {
            "id": 164,
            "team_id": 179,
            "code": "School",
            "short_description": "School",
            "full_description": "School",
            "load_order": 10
        },
        {
            "id": 165,
            "team_id": 179,
            "code": "Government",
            "short_description": "Government",
            "full_description": "Government",
            "load_order": 11
        }
    ]
}