For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get task logs

Get task logs

get

Get task logs. Defaults to ordering by timestamp descending when no order query is provided. Access: OPS, SVC.

Path parameters
idstringRequired

The task ID.

Responses
200

OK

application/json
get/public/v1/system/tasks/{id}/logs
GET /public/v1/system/tasks/{id}/logs HTTP/1.1
Host: api.platform.softwareone.com
Accept: */*
200

OK

{
  "$meta": {
    "pagination": {
      "offset": 0,
      "limit": 10,
      "total": 5
    },
    "omitted": [
      "audit"
    ]
  },
  "data": [
    {
      "id": "TLR-5992-0640-3485-0535",
      "revision": 1,
      "task": {
        "id": "TSK-5276-2474-4798-1266",
        "name": "Transferring the buyer to a different account",
        "revision": 1,
        "status": "Completed",
        "code": "accounts.buyers.transfer"
      },
      "severity": "Info",
      "message": "Applying changes to database and external systems.",
      "timestamp": "2025-09-04T09:03:20.103+00:00",
      "progress": 90
    }
  ]
}

Last updated

Was this helpful?