Skip to main content
GET
/
payment-transactions
List payment transactions
curl --request GET \
  --url https://app.dilli.studio/api/v1/payment-transactions \
  --header 'X-Api-Key: <api-key>'
{
  "current_page": 123,
  "per_page": 123,
  "total": 123,
  "data": [
    {
      "id": "<string>",
      "status": "<string>",
      "provider_reference": "<string>",
      "provider_account": {
        "id": "<string>",
        "name": "<string>",
        "provider": "pagarme",
        "mode": "test"
      },
      "payment_link": {
        "id": "<string>",
        "public_token": "<string>",
        "name": "<string>"
      },
      "amount": 123,
      "currency": "<string>",
      "metadata": {},
      "created_at": "2023-11-07T05:31:56Z",
      "events": [
        {
          "id": "<string>",
          "type": "<string>",
          "status": "<string>",
          "provider_reference": "<string>",
          "payload": {},
          "occurred_at": "2023-11-07T05:31:56Z"
        }
      ]
    }
  ]
}
Use the API Playground below to send this request with your X-Api-Key. Filter by search (provider reference or link name) or status to focus on specific payments.

Authorizations

X-Api-Key
string
header
required

Query Parameters

status
string

Response

200 - application/json

OK

current_page
integer
per_page
integer
total
integer
data
object[]