diff --git a/src/Bundle/ChillDocStoreBundle/chill.api.specs.yaml b/src/Bundle/ChillDocStoreBundle/chill.api.specs.yaml index 8570116aa..cdca3cf93 100644 --- a/src/Bundle/ChillDocStoreBundle/chill.api.specs.yaml +++ b/src/Bundle/ChillDocStoreBundle/chill.api.specs.yaml @@ -54,6 +54,38 @@ paths: 422: description: "Invalid data" + /1.0/doc-store/stored-object/{uuid}/is-ready: + get: + tags: + - storedobject + summary: Get the status of a stored object + parameters: + - in: path + name: uuid + required: true + allowEmptyValue: false + description: The UUID of the storedObject + schema: + type: string + format: uuid + responses: + 200: + description: "OK" + content: + application/json: + schema: + type: object + properties: + id: + type: integer + filename: + type: string + status: + type: string + enum: [empty, ready, pending, failure] + type: + type: string + /1.0/doc-store/async-upload/temp_url/{uuid}/generate/post: get: tags: