Skip to content

Files

Latest commit

 

History

History
60 lines (45 loc) · 1.35 KB

api-logs-listRepoLogs.adoc

File metadata and controls

60 lines (45 loc) · 1.35 KB

listRepoLogs

GET /api/v1/repository/{repository}/logs

Authorizations: oauth2_implicit (repo:admin)

Path parameters

Type Name Description Schema

path

repository
required

The full path of the repository. e.g. namespace/name

string

Query parameters

Type Name Description Schema

query

next_page
optional

The page token for the next page

string

query

endtime
optional

Latest time for logs. Format: "%m/%d/%Y" in UTC.

string

query

starttime
optional

Earliest time for logs. Format: "%m/%d/%Y" in UTC.

string

Responses

HTTP Code Description Schema

200

Successful invocation

400

Bad Request

401

Session required

403

Unauthorized access

404

Not found

Example command

$ curl -X GET \
  -H "Authorization: Bearer <bearer_token>" \
  -H "Accept: application/json" \
  "http://<quay-server.example.com>/api/v1/repository/{repository}/logs"