Skip to main content
GET
/
api
/
zapier
/
transactions
Get Transactions
curl --request GET \
  --url https://app.dimepayments.com/api/zapier/transactions \
  --header 'Authorization: Bearer <token>'
[
  {
    "amount": "100.00",
    "business": "Acme Inc",
    "transaction_date": "2020-10-15 12:00:00",
    "customer_uuid": "1234567890",
    "first_name": "John",
    "last_name": "Doe",
    "customer_phone": "1234567890",
    "customer_email": "email@email.com"
  },
  {
    "amount": "100.00",
    "business": "Acme Inc",
    "transaction_date": "2020-10-15 12:00:00",
    "customer_uuid": "1234567890",
    "first_name": "John",
    "last_name": "Doe",
    "customer_phone": "1234567890",
    "customer_email": "email@email.com"
  }
]

Authorizations

Authorization
string
header
required

You can retrieve your token by visiting your dashboard and clicking Generate API token under your profile in top right.

Response

Successful Listing

amount
string
Example:

"100.00"

business
string
Example:

"Acme Inc"

transaction_date
string
Example:

"2020-10-15 12:00:00"

customer_uuid
string
Example:

"1234567890"

first_name
string
Example:

"John"

last_name
string
Example:

"Doe"

customer_phone
string
Example:

"1234567890"

customer_email
string
Example:

"email@email.com"

Example:
[
{
"amount": "100.00",
"business": "Acme Inc",
"transaction_date": "2020-10-15 12:00:00",
"customer_uuid": "1234567890",
"first_name": "John",
"last_name": "Doe",
"customer_phone": "1234567890",
"customer_email": "email@email.com"
},
{
"amount": "100.00",
"business": "Acme Inc",
"transaction_date": "2020-10-15 12:00:00",
"customer_uuid": "1234567890",
"first_name": "John",
"last_name": "Doe",
"customer_phone": "1234567890",
"customer_email": "email@email.com"
}
]