Skip to main content
GET
/
stores
/
{storeId}
/
customers
Get customer by email
curl --request GET \
  --url https://api.getredo.com/v2.2/stores/{storeId}/customers \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.getredo.com/v2.2/stores/{storeId}/customers"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.getredo.com/v2.2/stores/{storeId}/customers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getredo.com/v2.2/stores/{storeId}/customers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.getredo.com/v2.2/stores/{storeId}/customers"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.getredo.com/v2.2/stores/{storeId}/customers")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.getredo.com/v2.2/stores/{storeId}/customers")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "id": "67bd4f1a2e3c8d001a5f9b12",
  "email": "jane@example.com",
  "firstName": "Jane",
  "lastName": "Smith",
  "phoneNumber": "+11234567890",
  "location": {
    "street1": "123 Main St",
    "street2": "Suite 12",
    "city": "Seattle",
    "state": "Washington",
    "stateCode": "WA",
    "postalCode": "98101",
    "country": "United States",
    "countryCode": "US",
    "latitude": 47.6062,
    "longitude": -122.3321
  },
  "customFields": {
    "pricing_plan": "com.example.yearly",
    "status": "Active",
    "subscription_source": "web",
    "loyalty_points": 1250,
    "vip_member": true
  },
  "createdAt": "2026-02-20T18:30:00.000Z",
  "updatedAt": "2026-02-24T12:15:00.000Z"
}
{
"detail": "<string>",
"instance": "<string>",
"title": "<string>",
"type": "about:blank"
}
{
"detail": "<string>",
"instance": "<string>",
"title": "<string>",
"type": "about:blank"
}
{
"detail": "<string>",
"instance": "<string>",
"title": "<string>",
"type": "about:blank"
}
{
"detail": "<string>",
"instance": "<string>",
"title": "<string>",
"type": "about:blank"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

storeId
string
required

Store ID

Example:

"64e5a8a1af49a89df37e4ee7"

Query Parameters

email
string<email>
required

Customer email address

Response

Customer found

Customer profile.

id
string
required

Redo customer ID

Example:

"67bd4f1a2e3c8d001a5f9b12"

email
string<email>
required

Customer email address

Example:

"jane@example.com"

firstName
string

Customer first name

Example:

"Jane"

lastName
string

Customer last name

Example:

"Smith"

phoneNumber
string

Customer phone number in E.164 format

Example:

"+11234567890"

location
Customer Location · object

Customer location information.

customFields
object

Custom field values as key-value pairs, where keys are field names and values can be strings, numbers, or booleans. DATE custom field values are returned as ISO 8601 datetime strings (e.g., "2026-01-15T12:00:00.000Z"), not Date objects.

Example:
{
"subscription_source": "web",
"status": "Active",
"loyalty_points": 1250,
"vip_member": true,
"signup_date": "2026-02-24T12:15:00.000Z"
}
createdAt
string<date-time> | null

Timestamp when the customer was created. May be null for older customers created before this field was tracked.

Example:

"2026-02-20T18:30:00.000Z"

updatedAt
string<date-time> | null

Timestamp when the customer was last updated. May be null for older customers created before this field was tracked.

Example:

"2026-02-24T12:15:00.000Z"