From e9fe555e05d33f359548b717d22efad6278c7dab Mon Sep 17 00:00:00 2001 From: mike cullerton Date: Tue, 1 Jun 2021 13:49:21 -0400 Subject: [PATCH] New `/datastore/file/{file_id}` endpoint definition --- crc/api.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/crc/api.yml b/crc/api.yml index 6501cebb..e032ccd5 100644 --- a/crc/api.yml +++ b/crc/api.yml @@ -1372,6 +1372,27 @@ paths: application/json: schema: $ref: "#/components/schemas/DataStore" + /datastore/file/{file_id}: + parameters: + - name: file_id + in: path + required: true + description: The file id we are concerned with + schema: + type: string + format: string + get: + operationId: crc.api.data_store.file_multi_get + summary: Gets all datastore items by file_id + tags: + - DataStore + responses: + '200': + description: Get all values from the data store for a file_id + content: + application/json: + schema: + $ref: "#/components/schemas/DataStore" components: securitySchemes: jwt: