Browse Source

Add get files endpoint readme docs

feature/add-get-files-endpoints
Roman Zipp 2 years ago
committed by Fabian Vowie
parent
commit
b5c0c97008
No known key found for this signature in database GPG Key ID: C27317C33B27C410
  1. 25
      README.md

25
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}`
Show pipeline information.

Loading…
Cancel
Save