Skip to main content
GET
/
api
/
zapier
/
new-customers
Get New Customers
curl --request GET \
  --url https://app.dimepayments.com/api/zapier/new-customers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 1,
      "first_name": "John",
      "last_name": "Doe",
      "phone": "1234567890",
      "email": "email@email.com",
      "addr1": "123 Main St",
      "addr2": "",
      "addr3": "",
      "city": "Anytown",
      "state": "CA",
      "zip": "12345",
      "country": "US"
    }
  ]
}

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

data
object[]
Example:
[
{
"id": 1,
"first_name": "John",
"last_name": "Doe",
"phone": "1234567890",
"email": "email@email.com",
"addr1": "123 Main St",
"addr2": "",
"addr3": "",
"city": "Anytown",
"state": "CA",
"zip": "12345",
"country": "US"
}
]