From b5c0c9700883928856820a678e432e78558862a6 Mon Sep 17 00:00:00 2001 From: Roman Zipp Date: Mon, 14 Feb 2022 15:11:05 +0100 Subject: [PATCH] Add get files endpoint readme docs --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index b01eb41..cfedeca 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,31 @@ Authorization: Bearer } ``` +### `GET` `/files` + +Show files. + +**Required headers**: + +```shell +Authorization: Bearer +``` + +**Example response**: + +```json +{ + "files": [ + { + "bucket": "foo", + "file_name": "output.jpg", + "size": 14523, + "modified_at": "2022-02-14T14:19:07.491308411+01:00" + } + ] +} +``` + ### `GET` `/pipelines/{pipeline}` Show pipeline information.