Get Latest Import Operations

It requires the view-import-operations permission.

URLRequires AuthHTTP Method

/api/v1/getLatestImportOperations

yes

GET

Headers

ArgumentExampleRequiredDescription

X-User-Id

myuser-name

Required

The authenticated user ID.

X-Auth-Token

myauth-token

Required

Auth token.

Example Call

curl -L -X GET 'http://localhost:3000/api/v1/getLatestImportOperations' \
-H 'X-User-Id: d26x6zSkaPSe5gCyy' \
-H 'X-Auth-Token: Zu-Z6eKzIIz7MCCRGeHi29bYkXZCJ4SxFC0JAasqm92'

Example Result

Success

[
    {
        "_id": "MJxTRZsYdho8Ww2qq",
        "type": "Pending Avatars",
        "importerKey": "pending-avatars",
        "ts": 1635280600083,
        "status": "importer_user_selection",
        "valid": false,
        "user": "d26x6zSkaPSe5gCyy",
        "_updatedAt": "2021-10-27T11:26:24.430Z"
    },
    {
        "_id": "YzSCu9WgqJ3wutF4T",
        "type": "Pending Files",
        "importerKey": "pending-files",
        "ts": 1635280596592,
        "status": "importer_done",
        "valid": false,
        "user": "d26x6zSkaPSe5gCyy",
        "_updatedAt": "2021-10-27T08:32:42.609Z"
    },
    {
        "_id": "96WJDaxXpwXC3fTD5",
        "type": "Pending Files",
        "importerKey": "pending-files",
        "ts": 1635277590992,
        "status": "importer_user_selection",
        "valid": false,
        "user": "d26x6zSkaPSe5gCyy",
        "_updatedAt": "2021-10-27T08:32:42.609Z"
    },
    {
        "_id": "zYc5kuFRaszfqCegB",
        "type": "Pending Avatars",
        "importerKey": "pending-avatars",
        "ts": 1635277492185,
        "status": "importer_done",
        "valid": false,
        "user": "d26x6zSkaPSe5gCyy",
        "_updatedAt": "2021-10-27T08:32:42.609Z"
    },
    {
        "_id": "XckCNn9ZsdywHso4f",
        "type": "Pending Avatars",
        "importerKey": "pending-avatars",
        "ts": 1635277452755,
        "status": "importer_done",
        "valid": false,
        "user": "d26x6zSkaPSe5gCyy",
        "_updatedAt": "2021-10-27T08:32:42.609Z"
    },
    {
        "_id": "NRqiLZ4bADfGwMRMz",
        "type": "CSV",
        "importerKey": "csv",
        "ts": 1635247067385,
        "status": "importer_file_loaded",
        "valid": false,
        "user": "d26x6zSkaPSe5gCyy",
        "_updatedAt": "2021-10-27T08:32:42.609Z",
        "contentType": "image/svg+xml",
        "file": "2021926111747_d26x6zSkaPSe5gCyy_pp.svg"
    },
    {
        "_id": "9mCbRPTbF9QHQ3RM6",
        "type": "Pending Avatars",
        "importerKey": "pending-avatars",
        "ts": 1635247489080,
        "status": "importer_done",
        "valid": false,
        "user": "d26x6zSkaPSe5gCyy",
        "_updatedAt": "2021-10-27T08:32:42.609Z"
    }
]

Error

Any of the following errors can occur on the endpoint.

  • Authorization: Requires an authentication token for the request to be made.

  • No Permission: This occurs when the authenticated user doesn't have the view-import-operations permission.

{
    "success": false,
    "error": "unauthorized"
}

Change Log

VersionDescription

1.0.0

Added

Last updated

Rocket.Chat versions receive support for six months after release.