POST /projects/{project_id}/messageCategories.json
tw.projects.createMessageCategory(project_id, {
"category": {
// --
}
})
GET /messageCategories/{id}.json
tw.messageCategories.get(category_id)
GET /projects/{project_id}/messageCategories.json
tw.projects.getMessageCategories(project_id)
PUT /messageCategories/{id}.json
tw.messageCategories.update(category_id, {
"category": {
// --
}
})
DELETE /messageCategories/{id}.json
tw.messageCategories.delete(category_id)