Update customer information
API Refs
- Staging: Update customer information
Path parameters
Name | Type | Description | Required |
---|---|---|---|
id | string | Stripe StripeCustomerID (cus_xxxxx) | yes |
Request body
Name | Type | Description | Required |
---|---|---|---|
string | Updated email address | no | |
firstName | string | Updated first name | no |
lastName | string | Updated last name | no |
phone | string | Updated phone number | no |
address | object | Updated billing address | no |
Response
Returns the updated customer object with:
id
: StripeCustomerIDemail
: Updated email addressfirstName
: Updated first namelastName
: Updated last namephone
: Updated phone numberupdatedAt
: Update timestamp
Description
This endpoint updates customer information such as contact details and billing address. Only include the fields you want to update in the request body - any fields not included will remain unchanged. Changes are synchronized with Stripe automatically. Note that you cannot update payment methods through this endpoint; customers should use the billing portal for payment method management.
Updated 3 days ago