List PIX Payment

List

GET https://gateway-pix.raspay.com.br/production/v3/reprot/transactions/pix

Query Parameters

Name
Type
Description

page

int

Page Number

status

string

PIX WAITING PAID CANCELED

end_date

string

Date ISO format Ex: (2021-04-27T23:59:59.000Z)

start_date

string

Date ISO format Ex: (2020-04-01T00:00:00.000Z)

limit

int

Limit items by page

Headers

Name
Type
Description

Authorization

string

Bearer Token got from Auth endpoint

Content-Type

string

application/json

{
    "total": 1,
    "transactions_total": 1,
    "transactions_value": 14.26,
    "paid_total": 1,
    "paid_value": 14.26,
    "chargeback_total": 0,
    "chargeback_value": 0,
    "waiting_total": 0,
    "waiting_value": 0,
    "canceled_total": 0,
    "canceled_value": 0,
    "page": 1,
    "limit": 100,
    "transactions": [
        {
            "id": "b60ff3e9-6a58-4fc1-858d-75a4f4f1c76d",
            "transaction_type": "PIX",
            "value": 1,
            "created_at": "2021-07-20T22:01:45.120Z",
            "delivered_at": "2021-07-20T22:02:44.000Z",
            "status": "PAID",
            "conciliation_id": "66430ca556b5419da2dde7d46",
            "end_to_end_id": "E18236120202211030409s00e406e4f7",
            "buyer": {
                "name": "John Doe",
                "email": "john@ras.net.br",
                "cpf": "00000000000"
            }
        }
    ]
}
curl --request GET \
  --url https://gateway-pix.raspay.com.br/production/v3/report/transactions/pix \
  --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjEiLCJuYW1lIjoiSm9obiBkb2UiLCJ1c2VybmFtZSI6ImpvaG5kb2UiLCJjb2RlIjoiMDAwMCIsImtleSI6ImpvaG5kb2VAcmFzLmJ1c2luZXNzIiwic3RhdHVzIjoidHJ1ZSIsImlhdCI6MTYxNzkwMjc2MiwiZXhwIjoxNjE3OTA2MzYyfQ.KS1gA6eNgdU6w6nCwoRE1zPLHnelGtE57uWohLlkS8o'

Last updated