Get Client Transactions

Get Client Transactions

GET {{Environment_URL}}/v2/transactions?page=1&paginate=5

This endpoint is responsible to return all monetary information of transactions made by an logged user with an authorized client.

Obs: This route allows to pagination.

Headers

Name
Value

Authorization

Bearer <token>

client-key

123ABCD456

Path Params

Name
Value
Description

page

1

Number of pages

paginate

5

Number of itens by page

Response

[
  {
    "agent": {
      "Store": {
        "changeAgencyId": 300,
        "latitude": 1.1,
        "longitude": 2.1
      },
      "label": "São Paulo",
      "storeId": 1,
      "vuoriId": "AG 001"
    },
    "changeTransactionCode": 0,
    "correspondentId": 3,
    "createdAt": "2019-10-14T18:20:33.957Z",
    "currencyAvailabilityCardId": 0,
    "deliveryAddress": {
      "city": "São Paulo",
      "complement": "casa",
      "default": true,
      "id": 58,
      "neighborhood": "Vila Olímpia",
      "nickname": "Frente",
      "number": 145,
      "state": "SP",
      "street": "Rua do Rocio",
      "zipCode": "04552-000"
    },
    "deliveryCost": 30,
    "deliveryDate": "2019-01-28T14:14:22.073Z",
    "deliveryReceiver": {
      "document": "00012345678",
      "name": "Bolinha da silva"
    },
    "id": 118,
    "iof": 0,
    "logisticCardId": 93929,
    "partnerId": null,
    "product": "ILS",
    "sellPrice": 4,
    "status": {
      "key": "AWAITING_PAYMENT",
      "label": "Aguardando pagamento"
    },
    "transactionType": "cash",
    "transactionValue": 1400,
    "user": {
      "correspondent_id": "14",
      "email": "[email protected]",
      "id": 1
    },
    "userId": 1,
    "vuoriId": 1
  },
  {
    "agent": {
      "Store": {
        "changeAgencyId": 300,
        "latitude": 1.1,
        "longitude": 2.1
      },
      "label": "São Paulo",
      "storeId": 1,
      "vuoriId": "AG 001"
    },
    "changeTransactionCode": 0,
    "correspondentId": 3,
    "createdAt": "2019-10-14T18:20:33.956Z",
    "currencyAvailabilityCardId": 0,
    "deliveryAddress": {
      "city": "São Paulo",
      "complement": "casa",
      "default": true,
      "id": 58,
      "neighborhood": "Vila Olímpia",
      "nickname": "Frente",
      "number": 145,
      "state": "SP",
      "street": "Rua do Rocio",
      "zipCode": "04552-000"
    },
    "deliveryCost": 30,
    "deliveryDate": "2019-01-28T14:14:22.073Z",
    "deliveryReceiver": {
      "document": "00012345678",
      "name": "Bolinha da silva"
    },
    "id": 117,
    "iof": 0,
    "logisticCardId": 93929,
    "partnerId": null,
    "product": "ILS",
    "sellPrice": 4,
    "status": {
      "key": "AWAITING_PAYMENT",
      "label": "Aguardando pagamento"
    },
    "transactionType": "cash",
    "transactionValue": 1400,
    "user": {
      "correspondent_id": "14",
      "email": "[email protected]",
      "id": 1
    },
    "userId": 1,
    "vuoriId": 1
  }
]