List Transactions

Retrieves a paginated list of transactions based on filter criteria such as date range, transaction type, and status.

Query Parameters
  • brandName
    Type: string

    Optional Brand Name filter

  • locationName
    Type: string

    Optional Location Name filter

  • paymentType
    Type: string · enum

    Optional Payment Type filter (GiftCard, CreditCard, Crypto)

    values
    • GiftCard
    • CreditCard
    • Crypto
  • status
    Type: string · enum

    Optional Status filter (Success, Failed)

    values
    • Success
    • Failed
  • fromDate
    Type: string Format: date

    Optional start date filter (inclusive) in format yyyy-MM-dd

  • toDate
    Type: string Format: date

    Optional end date filter (inclusive) in format yyyy-MM-dd

  • pageSize
    Type: integer Format: int32
    min:  
    1
    max:  
    100

    Number of records per page (default: 10)

  • pageNumber
    Type: integer Format: int32
    min:  
    1
    max:  
    2147483647

    Page number (default: 1)

Headers
  • Authorization
    Type: string
    required

    Bearer token for API authorization. Send in the format: Bearer ACCESS_TOKEN_GOES_HERE.

Responses
  • application/json
  • application/json
Request Example for get/transactions/v1
curl https://SERVER_NAME_GOES_HERE.partech.com/transactions/v1 \
  --header 'Authorization: Bearer ACCESS_TOKEN_GOES_HERE'
{
  "transactions": [
    {
      "transactionId": "TRANSACTION_ID_GOES_HERE",
      "brandName": "Starbucks",
      "locationName": "Downtown Store",
      "storeId": "STR001",
      "status": "Success",
      "transactionDate": "2026-03-05T11:28:29.7628989Z",
      "transactionType": "Purchase",
      "paymentType": "CreditCard",
      "paymentSource": "Online",
      "amount": 150.75,
      "referenceNumber": "REF123456",
      "cardType": "VISA",
      "last4Digits": "1234",
      "channel": "Ecommerce",
      "tip": 10,
      "taxes": 8.25,
      "currency": "USD"
    },
    {
      "transactionId": "TRANSACTION_ID_GOES_HERE",
      "brandName": "Starbucks",
      "locationName": "Airport Store",
      "storeId": "STR002",
      "status": "Success",
      "transactionDate": "2026-03-04T11:28:29.7629011Z",
      "transactionType": "Redeem",
      "paymentType": "GiftCard",
      "paymentSource": "POS",
      "amount": 50,
      "referenceNumber": "REF123457",
      "cardType": "GIFT",
      "last4Digits": "9876",
      "channel": "InStore",
      "tip": 0,
      "taxes": 0,
      "currency": "USD"
    }
  ],
  "totalCount": 25
}