Skip to main content
GET
/
workspaces
/
{ws_id}
/
attempts
Page webhook attempts
curl --request GET \
  --url http://localhost:8080/workspaces/{ws_id}/attempts
{
  "total": 1,
  "data": [
    {
      "id": "<string>",
      "event_id": "<string>",
      "endpoint_id": "<string>",
      "status": "INIT",
      "attempt_number": 123,
      "scheduled_at": 123,
      "attempted_at": 123,
      "trigger_mode": "INITIAL",
      "exhausted": true,
      "error_code": "TIMEOUT",
      "request": {
        "method": "<string>",
        "url": "<string>",
        "headers": {},
        "body": "<string>"
      },
      "response": {
        "status": 123,
        "latency": 123,
        "headers": {},
        "body": "<string>"
      },
      "created_at": 123,
      "updated_at": 123
    }
  ]
}

Path Parameters

ws_id
string
required

The workspace id

Example:

"default"

Query Parameters

page_no
integer
default:1
page_size
integer
default:20
event_id
string
endpoint_id
string

Response

200 - application/json

OK

data
object[]
total
integer
Example:

1