Skip to main content
GET
/
instances
/
{instance}
/
failed-jobs
List managed queue failed jobs
curl --request GET \
  --url https://cloud.laravel.com/api/instances/{instance}/failed-jobs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {
        "name": "<string>",
        "queue": "<string>",
        "failed_at": "2023-11-07T05:31:56Z",
        "started_at": "2023-11-07T05:31:56Z",
        "attempts": "<string>",
        "exception": "<string>",
        "retried_at": "2023-11-07T05:31:56Z",
        "retry_reserved_until": "2023-11-07T05:31:56Z"
      }
    }
  ],
  "links": {
    "first": "<string>",
    "last": "<string>",
    "prev": "<string>",
    "next": "<string>"
  },
  "meta": {
    "current_page": 2,
    "from": 2,
    "last_page": 2,
    "links": [
      {
        "url": "<string>",
        "label": "<string>",
        "active": true
      }
    ],
    "path": "<string>",
    "per_page": 1,
    "to": 2,
    "total": 1
  }
}

Authorizations

Authorization
string
header
required

The Bearer Token generated on the Cloud UI.

Path Parameters

instance
string
required

The instance identifier

Response

Paginated set of ManagedQueueFailedJobResource

data
ManagedQueueFailedJobResource · object[]
required
meta
object
required