Skip to main content
GET
/
customer
/
findByEmail
Find a customer by email
curl --request GET \
  --url https://virtserver.swaggerhub.com/nickel-ace/apiv1/1.0.0/customer/findByEmail
{
  "name": "Claudio Wilson",
  "email": "claudio@getnickel.com",
  "id": "clkqzo2y1000cx9tfohoiodq1",
  "chargeAuthorizations": [
    {
      "id": "<string>",
      "customerId": "<string>",
      "paymentMethod": {
        "id": "<string>",
        "type": "ACH",
        "achDetails": {
          "bankName": "JP Morgan Chase",
          "routingNumber": "<string>",
          "accountNumberLastFour": "<string>"
        },
        "cardDetails": {
          "brand": "visa",
          "last4": "<string>",
          "holderName": "<string>",
          "expMonth": "2",
          "expYear": "2030"
        },
        "billingDetails": {
          "name": "<string>",
          "companyName": "<string>",
          "street": "<string>",
          "city": "<string>",
          "state": "<string>",
          "zip": "<string>",
          "countryCode": "<string>"
        }
      },
      "transactionLimitCents": 123,
      "expirationDate": "2023-12-25",
      "active": true
    }
  ]
}

Query Parameters

email
string

Email that will be used to query the customer

Response

Successful operation

name
string
required
Example:

"Claudio Wilson"

email
string<email>
required
Example:

"claudio@getnickel.com"

id
string
Example:

"clkqzo2y1000cx9tfohoiodq1"

chargeAuthorizations
object[]