For the complete documentation index, see llms.txt. This page is also available as Markdown.

List

List data konten

Method pada API ini adalah GET, API ini digunakan untuk menampilkan daftar konten yang sudah diupload pada storage. Cara Menggaksesnya adalah dengan memasukkan key access_key, app_key, secret_key. kedalam header dan key dengan nama file pada form data. seperti yang ada pada tampilan info detail Storage

Contoh output yang akan keluar adalah

{
    "statusCode": 200,
    "message": "Success",
    "data": {
        "data": [
            {
                "id": 2,
                "id_layanan_storage": 5,
                "id_user": 1,
                "id_member": 0,
                "name": "20240308185257-7f39f8317fbdb1988ef4c628eba02591-0f50.jpg",
                "url_path": "external/storage/780/5/test/storage2/1/20240308185257-7f39f8317fbdb1988ef4c628eba02591-0f50.jpg",
                "type": "image/jpeg",
                "size_in_text": null,
                "size": 7110,
                "updatedBy": null,
                "createdBy": null,
                "updatedAt": "2024-03-08 18:52:57.146801",
                "createdAt": "2024-03-08 18:52:57.146801",
                "deletedBy": null,
                "deletedAt": null,
                "_id": 2
            },
            ...
        ],
        "total": 3
    }
}

Last updated