GET/projects/api/v3/importer/stats.json

Get stats about Importers

This endpoint returns info about a set of importers. This includes whether they are individually running or not, what's their status and a flag to represent if any importer is running. The endpoint looks up redis for this information. Using the parameter resetImporters this information can be deleted in redis to reset it.

Query Params

  • Name
    resetImporters
    Type
    boolean
    Description

    reset importers

    Default
    false

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 OK
    ImportersResponse contains information about a group of importers.
  • Code
    400
    Type
    object
    Schema
    Description
    400 Bad Request
    ErrorResponse defines how []Error should be marshaled to JSON.

Examples

200 OK

ImportersResponse
{
  "importers": [
    {
      "name": "string",
      "running": true,
      "status": "string"
    }
  ],
  "isImporting": true
}