v5

latestOpenAPI 3.1.02026-07-31151195455.5 KB
apps

Returns a list of recent sync errors that have occurred since the last successful sync.

get/sync_errors

Query parameters

app_idstring uuid

The ID of the app to list sync errors for.

resource_idstring uuid

The ID of the resource to list sync errors for.

group_idstring uuid

The ID of the group to list sync errors for.

Response

A list of sync errors.

Example response

[
  {
    "sync_errors": [
      {
        "app_id": "b5a5ca27-0ea3-4d86-9199-2126d57d1fbd",
        "first_seen": "2022-07-14T06:59:59Z",
        "last_seen": "2022-08-23T04:32:46Z",
        "error_message": "Failed to connect to the remote system - insufficient credentials."
      },
      {
        "app_id": "b5a5ca27-0ea3-4d86-9199-2126d57d1fbd",
        "first_seen": "2023-04-24T06:59:59Z",
        "last_seen": "2024-08-21T04:32:46Z",
        "error_message": "Resource not found."
      }
    ]
  }
]