Marketing Status

Here you find all available endpoints related to Followup CRM Marketing Status. 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/marketing-status

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/marketing-status?api_token=YOUR_API_TOKEN


Response

{
    "success": true,
    "message": "Marketing Status Listing",
    "data": [
        {
            "id": 29,
            "team_id": 179,
            "code": "Current Client",
            "short_description": "Current Client",
            "full_description": "Current Client",
            "load_order": 1
        },
        {
            "id": 30,
            "team_id": 179,
            "code": "Prospect",
            "short_description": "Prospect",
            "full_description": "Prospect",
            "load_order": 2
        }
    ]
}