Labels
Last updated
DELETE /api/labels/{id} HTTP/1.1
Accept: */*
DELETE /api/labels/search_delete_one HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 24
{
"name": "example_label"
}GET /api/labels HTTP/1.1
Accept: */*
{
"data": [
{
"data": {
"id": 1,
"name": "example_label"
}
},
{
"data": {
"id": 2,
"name": "another_label"
}
}
]
}POST /api/labels HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 24
{
"name": "example_label"
}{
"data": {
"id": 1,
"name": "example_label"
}
}