A customer represents a person or entity that pays through StellarTools. Customers hold wallets, subscriptions, and payment history.Documentation Index
Fetch the complete documentation index at: https://docs.stellartools.dev/llms.txt
Use this file to discover all available pages before exploring further.
The customer object
Unique identifier. Prefixed with
cus_.Always
"customer".Email address of the customer.
Full name of the customer.
Phone number of the customer.
URL to the customer’s profile image.
Stellar wallets linked to this customer.
Arbitrary key-value data you can attach to the customer.
ISO 8601 timestamp.
ISO 8601 timestamp.
Create a customer
POST /customers
Creates one customer. You can also pass an array to create multiple at once.
Body
Customer’s email address.
Customer’s full name.
Customer’s phone number.
URL to a profile image.
Arbitrary key-value string pairs to attach to the customer.
List customers
GET /customers
Returns all customers for your account.
Retrieve a customer
GET /customers/{customer_id}
Update a customer
PUT /customers/{customer_id}
Body
New email address.
New name.
New phone number.
New image URL.
Merged with existing metadata.
Delete a customer
DELETE /customers/{customer_id}
Returns null on success.

