add-category action endpoint
URL: /blogs/<id>/add-category.<format>
Supported Methods
| POST | Send label argument to remove a category from the blog |
POST Request Object Type
This endpoint accepts the following properties in POST requests:
- category (string)
- (Required) The category to add.
Client Library Methods for PHP
- Send label argument to remove a category from the blog
$tp->blogs->addCategory(array( # Required Parameters "id" => $id, "payload" => $payload, ))