Browse Source
Add get files endpoint readme docs
feature/add-get-files-endpoints
Roman Zipp
3 years ago
committed by
Fabian Vowie
No known key found for this signature in database
GPG Key ID: C27317C33B27C410
1 changed files with
25 additions and
0 deletions
-
README.md
|
@ -106,6 +106,31 @@ Authorization: Bearer <Token> |
|
|
} |
|
|
} |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
### `GET` `/files` |
|
|
|
|
|
|
|
|
|
|
|
Show files. |
|
|
|
|
|
|
|
|
|
|
|
**Required headers**: |
|
|
|
|
|
|
|
|
|
|
|
```shell |
|
|
|
|
|
Authorization: Bearer <Token> |
|
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
**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}` |
|
|
### `GET` `/pipelines/{pipeline}` |
|
|
|
|
|
|
|
|
Show pipeline information. |
|
|
Show pipeline information. |
|
|