1. Customers
Reseller Stack Public APIs
  • Customers
    • List customers
      GET
    • Create customer
      POST
    • Get customer
      GET
    • Update customer notes
      PATCH
    • Update customer status
      PATCH
    • Update billing details
      PATCH
  • Geo
    • List countries
      GET
    • List states
      GET
  • Pricing
    • List TLD pricing
      GET
    • Update TLD pricing
      PATCH
    • Set TLD featured
      PATCH
    • Apply bulk margin
      POST
    • Reorder TLD pricing
      POST
  • Domains
    • List domains
      GET
    • Check domain availability
      POST
    • Checkout domain cart (single domain)
      POST
    • Checkout domain cart (bulk)
      POST
    • Get domain
      GET
    • Toggle transfer lock
      PATCH
    • Toggle auto-renew
      PATCH
    • Preview renewal price
      GET
    • Renew domain now
      POST
    • Get domain history
      GET
  • Orders
    • List orders
      GET
    • Get order
      GET
  • DNS
    • List DNS records
    • Add DNS records
    • Update DNS record
    • Delete DNS record
    • Update nameservers
    • Reset nameservers
    • List DNSSEC records
    • Add DNSSEC record
    • Delete DNSSEC record
  • Webhooks
    • Delivered when domain.order.success fires
    • Delivered when domain.order.failed fires
    • Delivered when domain.renewal.success fires
    • Delivered when domain.renewal.failed fires
  • Health check
    GET
  • Get current partner
    GET
  1. Customers

List customers

GET
/customers
List the partner's end customers.

Request

Authorization
API Key
Add parameter in header
rs-x-api-key
Example:
rs-x-api-key: ********************
or

Responses

🟢200
application/json
Customers
Bodyapplication/json

🟠401
🟠403
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/customers' \
--header 'rs-x-api-key: <api-key>'
Response Response Example
{
    "status": 200,
    "message": "Users",
    "data": {
        "totalSearchedCount": 128,
        "currentPage": 1,
        "nextPage": 2,
        "totalPages": 3,
        "data": [
            {
                "id": "b1c2d3e4-f5a6-4b7c-8d9e-0f1a2b3c4d5e",
                "componentUserId": "USR-7K2M9QX4",
                "partnerId": "1f2e3d4c-5b6a-4978-8899-aabbccddeeff",
                "firstName": "Jane",
                "lastName": "Doe",
                "email": "jane.doe@acme.com",
                "stripeCustomerId": "cus_QabcXYZ123",
                "notes": "VIP account, prefers email contact",
                "tags": [
                    "vip",
                    "reseller"
                ],
                "status": "ACTIVE",
                "createdAt": "2026-06-10T14:22:00.000Z",
                "workspaces": [
                    {
                        "userId": "b1c2d3e4-f5a6-4b7c-8d9e-0f1a2b3c4d5e",
                        "id": "c2d3e4f5-a6b7-4c8d-9e0f-1a2b3c4d5e6f",
                        "name": "Acme Corp",
                        "isPrimary": true,
                        "createdAt": "2026-06-10T14:22:00.000Z",
                        "billingRecords": [
                            {
                                "firstName": "Jane",
                                "lastName": "Doe",
                                "company": "Acme Corp",
                                "addressLineOne": "123 Market St",
                                "addressLineTwo": "Suite 400",
                                "addressLineThree": null,
                                "city": "San Francisco",
                                "state": "CA",
                                "country": "US",
                                "postalCode": "94103",
                                "phoneCc": "+1",
                                "phone": "5551234567",
                                "languagePreference": "en"
                            }
                        ]
                    }
                ],
                "mailboxesPurchased": 3,
                "domainsPurchased": 5,
                "netProfit": 24.5,
                "totalRevenue": 89.95,
                "health": "good",
                "hasSavedCard": true,
                "openOrders": 0
            }
        ]
    }
}
Modified at 2026-08-28 11:33:21
Next
Create customer
Built with