Skip to main content
GET
/
v2
/
order-disputes
/
{orderDisputeCase}
/
events
List events for an order dispute
curl --request GET \
  --url https://api.gameboost.com/v2/order-disputes/{orderDisputeCase}/events \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "type": "dispute_created",
      "actor_id": 123,
      "actor_username": "<string>",
      "payload": {},
      "evidence_urls": [
        "<string>"
      ],
      "created_at": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

orderDisputeCase
string
required

The ID of the order dispute case.

Response

Chronological list of events for an order dispute

data
object[]