/api/v1/customer/stores/{id}/campaign-tags

GET

/api/v1/customer/stores/{id}/campaign-tags

This API method will grab available tags for campaigns for selected account

Sample Response

{
    "status": true,
    "items": [
        {
            "id": "LZWBJx0PmYkEwjGdr2vO",
            "name": "test tag1",
            "created_at": "2021-09-30 10:43:06"
        },
        {
            "id": "bZ6xBGP2mdPm3R8VX17L",
            "name": "test tag2",
            "created_at": "2021-09-30 10:44:30"
        }
    ]
}
{
    "status": false,
    "errorCode": "NO_ITEMS",
    "message": "No items exist under your account"
}