Skip to main content
GET
/
systemOfRecordIntegration
/
logs
/
list
List logs
curl --request GET \
  --url https://api.getcargo.io/v1/systemOfRecordIntegration/logs/list \
  --header 'Authorization: Bearer <token>'
{
  "logs": [
    {
      "uuid": "<string>",
      "workspaceUuid": "<string>",
      "systemOfRecordUuid": "<string>",
      "query": "<string>",
      "status": "success",
      "processedBytesCount": 123,
      "errorMessage": "<string>",
      "startedAt": "<string>",
      "finishedAt": "<string>",
      "createdAt": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

statuses
enum<string>[]

Log statuses to include.

Available options:
success,
error
query
string

Search query for logs.

limit
string

Maximum number of logs to return.

offset
string

Number of logs to skip.

Response

Successful response

logs
Logs · object[]
required

List of logs.