List of imported files

Lists all files imported by the requesting user. An empty json response will be returned if the user anonymous.

GET /api/v2/imports/

Example

  curl -X GET https://[kpi]/api/v2/imports/
  {
      "count": integer,
      "next": ...,
      "previous": ...,
      "results": [
          {
              "url": "https:[kpi]/api/v2/imports/{import_uid}/",
              "status": asset_uid,
              "messages": {
                  "updated": [
                      {
                          "uid": "",
                          "kind": "",
                          "summary": {
                                  "geo": boolean,
                                  "labels": [],
                                  "columns": [],
                                  "languages": [],
                                  "row_count": integer,
                                  "default_translation": "",
                              },
                              "owner__username": "",
                       }
                  ]
              },
              "uid": import_uid,
              "date_created": "",
          },
      ]
  }
GET /api/v2/imports/?format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 0,
    "next": null,
    "previous": null,
    "results": []
}