Skip to main content
GET
https://api.stateset.com
/
v1
/
customers
/
:id
curl --location --request GET 'https://api.stateset.com/v1/customers/1234-5678-9012-3456' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>'
{
  "customer": {
    "sso_id": "1234-5678-9012-3456",
    "email": "[email protected]",
    "firstName": "Jane",
    "lastName": "Doe",
    "phone": "+1-555-123-4567",
    "stripe_customer_id": "cus_1234567890",
    "activationDate": "2024-01-15T00:00:00.000Z",
    "timestamp": "2024-06-01T12:30:00.000Z"
  }
}
Returns the full customer object including profile, address, and integration details.

Path Parameters

id
string
required
The unique identifier (SSO ID) of the customer to retrieve.Example: 1234-5678-9012-3456

Response

sso_id
string
Unique identifier for the customer.
email
string
Customer’s email address.
firstName
string
Customer’s first name.
lastName
string
Customer’s last name.
phone
string
Customer’s phone number.
stripe_customer_id
string
Associated Stripe customer ID for payment processing.
activationDate
string
ISO 8601 date when the customer account was activated.
timestamp
string
ISO 8601 timestamp of the last update to the customer record.
curl --location --request GET 'https://api.stateset.com/v1/customers/1234-5678-9012-3456' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>'
{
  "customer": {
    "sso_id": "1234-5678-9012-3456",
    "email": "[email protected]",
    "firstName": "Jane",
    "lastName": "Doe",
    "phone": "+1-555-123-4567",
    "stripe_customer_id": "cus_1234567890",
    "activationDate": "2024-01-15T00:00:00.000Z",
    "timestamp": "2024-06-01T12:30:00.000Z"
  }
}