GET
/
v1
/
imports
/
{import_id}
curl --request GET \
  --url https://api.qobra.co/v1/imports/{import_id} \
  --header 'X-API-Key: <api-key>'
{
  "data_import": {
    "id": "647a13fe875af4b4eb7133c2",
    "created_at": "2024-06-25T09:58:32Z",
    "launched_at": "2024-06-25T10:03:27Z",
    "finished_at": "2024-06-25T10:14:12Z",
    "status": "finished",
    "progress": 100,
    "data_tables_details": [
      {
        "type": "api",
        "status": "finished",
        "data_table_key": "companies",
        "progress": 100,
        "number_of_records": 122,
        "error": null
      },
      {
        "type": "api",
        "status": "finished",
        "data_table_key": "opportunities",
        "progress": 100,
        "number_of_records": null,
        "error": {
          "title": "ParsingError",
          "description": "Can't parse 'AAAAA' as float for user attribute amount",
          "parsing_error_details": [
            {
              "line_number": 1,
              "row": {
                "id": "1",
                "name": "Great opportunity",
                "user": "user@example.fr",
                "amount": "AAAAA"
              },
              "details": "ValueError: could not convert string to float: 'AAAAA'"
            }
          ]
        }
      }
    ]
  }
}

How to use it

After pushing data to Qobra with the Record ingestion route, you’ll receive an import_id. Since Qobra record ingestion is performed as a background task, you’ll have to fetch your import details to verify it went successfully.

Authorizations

X-API-Key
string
header
required

Path Parameters

import_id
string
required

Used to identify the import

Response

200 - application/json
Success operation
data_import
object
required

Each import contains information about their status, progress and potential errors. Note that imports stack together, meaning that a single import can show data about several data tables.