{info} Mengolah data todo.
https://public-api.delcom.org/api/v1
/todos
Content-Type
: application/x-www-form-urlencoded
Authorization
: Bearer <token>
title
as string
description
as string
{
"success": true,
"message": "Berhasil menambahkan data",
"data": {
"todo_id": 1
}
}
/todos/:id/cover
Content-Type
: multipart/form-data
Authorization
: Bearer <token>
cover
as file
{
"success": true,
"message": "Berhasil mengubah cover"
}
/todos/:id
Content-Type
: application/x-www-form-urlencoded
Authorization
: Bearer <token>
title
as string
description
as string
is_finished
as 1 | 0
1
as true
0
as false
{
"success": true,
"message": "Berhasil mengubah data"
}
/todos
is_finished
as 1 | 0
1
as true
0
as false
Authorization
: Bearer <token>
{
"success": true,
"message": "Berhasil mengambil data",
"data": {
"todos": [
{
"id": 1,
"title": "Update judul",
"description": "Update deskripsi",
"is_finished": 1,
"cover": null,
"created_at": "2024-02-26T02:34:26.000000Z",
"updated_at": "2024-02-26T02:44:47.000000Z"
},
{
"id": 2,
"title": "Update judul 2",
"description": "Update deskripsi 2",
"is_finished": 0,
"cover": "img/cover/1_1708916270.png",
"created_at": "2024-02-26T02:45:59.000000Z",
"updated_at": "2024-02-26T02:58:28.000000Z"
}
]
}
}
/todos/:id
Authorization
: Bearer <token>
{
"success": true,
"message": "Berhasil mengambil data",
"data": {
"todo": {
"id": 2,
"title": "Update judul 2",
"description": "Update deskripsi 2",
"is_finished": 0,
"cover": "img/cover/1_1708916270.png",
"created_at": "2024-02-26T02:45:59.000000Z",
"updated_at": "2024-02-26T02:58:28.000000Z"
}
}
}
/todos/:id
Authorization
: Bearer <token>
{
"success": true,
"message": "Berhasil menghapus data"
}