> ## Documentation Index
> Fetch the complete documentation index at: https://docs.covver.io/llms.txt
> Use this file to discover all available pages before exploring further.

> Store creation takes about 30 seconds. Poll this API every few seconds to know when the collection is ready with all products and images

# Get the status of a collection



## OpenAPI

````yaml get /api/ext/v1/collection/{collectionId}/status
openapi: 3.0.1
info:
  title: Covver External API docs
  description: Covver External API docs
  version: 0.1.0
servers:
  - url: https://staging-api.covver.io
    description: Covver Staging Server
  - url: https://api.covver.io
    description: Covver Production Server
  - url: http://localhost:8080
    description: Covver Local Server
security:
  - BearerAuth: []
tags:
  - name: Auth
    description: Authentication endpoints
  - name: Products
    description: Product endpoints
  - name: People
    description: People endpoints
  - name: Orders
    description: Orders endpoints
  - name: Reports
    description: Report endpoints
externalDocs:
  url: https://swagger.io
  description: Find more info here
paths:
  /api/ext/v1/collection/{collectionId}/status:
    get:
      tags:
        - Products
      summary: Get the status of a collection
      description: Get the status of a collection
      parameters:
        - schema:
            type: string
          in: query
          name: companyId
          required: true
        - schema:
            type: string
            nullable: true
          in: query
          name: firstName
          required: false
          description: First name
        - schema:
            type: string
            nullable: true
          in: query
          name: lastName
          required: false
          description: Last name
        - schema:
            type: string
            nullable: true
          in: query
          name: department
          required: false
          description: Work department (e.g. sales)
        - schema:
            type: string
            nullable: true
          in: query
          name: location
          required: false
          description: Work location (site/city/country)
        - schema:
            format: date-time
            type: string
            nullable: true
          in: query
          name: startDate
          required: false
          description: Start date in ISO format
        - schema:
            format: date-time
            type: string
            nullable: true
          in: query
          name: birthDate
          required: false
          description: Birth date in ISO format
        - schema:
            type: string
          in: path
          name: collectionId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  isReady:
                    type: boolean
                required:
                  - isReady
        4XX:
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  errorCode:
                    type: string
                  error: {}
                  statusCode:
                    type: number
                required:
                  - message
                  - errorCode
                  - statusCode
        5XX:
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  errorCode:
                    type: string
                  error: {}
                  statusCode:
                    type: number
                required:
                  - message
                  - errorCode
                  - statusCode
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````