API Endpoint: /api/category/
POST Request

This endpoint allows you to update or create categories, can be used to add people to categories.

{
    name: "name of category",
    clients: [
        {
            email: "client email",
            name: "name of client (not required)"
        }
    ]
}
                    

GET Request

This API endpoint gets all the data associated to a category.

{
    name: "name of category"
}
                    

DELETE Request

This API endpoint delets the category as well as all the emails accociated to with the catagory. THIS IS NOT REVERSABLE

{
    name: "name of category"
}
                    
Endpoint URL
https://simplebulkemailer.app/api/category/

Additional information

Payload Breakdown

Header
  • Bearer Token Your API key found on your dashboard "Bearer [your_token]"
Body

Follow example payloads