GET
/
webhook_events
import DodoPayments from 'dodopayments';

const client = new DodoPayments({
  bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});

async function main() {
  // Automatically fetches more pages as needed.
  for await (const webhookEvent of client.webhookEvents.list()) {
    console.log(webhookEvent.business_id);
  }
}

main();
{
  "items": [
    {
      "business_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "event_id": "<string>",
      "event_type": "<string>",
      "latest_attempted_at": "2023-11-07T05:31:56Z",
      "object_id": "<string>",
      "request": "<string>",
      "response": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

created_at_gte
string | null

Get events after this created time

created_at_lte
string | null

Get events created before this time

limit
integer | null

Min : 1, Max : 100, default 10

object_id
string | null

Get events history of a specific object like payment/subscription/refund/dispute

page_size
integer | null

Page size default is 10 max is 100

Required range: x >= 0
page_number
integer | null

Page number default is 0

Required range: x >= 0

Response

200 - application/json
items
object[]
required