Skip to main content
GET
/
v2
/
issuer
/
events
List all events
curl --request GET \
  --url https://api.decisionly.com/v2/issuer/events \
  --header 'Authorization: Basic <encoded-value>'
{
  "has_more": true,
  "data": [
    {
      "id": "<string>",
      "type": "case.chargeback_filed",
      "created": "2023-11-07T05:31:56Z",
      "data": {
        "case_id": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Use your API key as the username. No password is required.

Query Parameters

limit
integer
default:10
Required range: 1 <= x <= 100
starting_after
string
ending_before
string

Response

200 - application/json

A JSON array of events.

has_more
boolean
data
object[]