Update a customer’s information.
JavaScript
import DodoPayments from 'dodopayments'; const client = new DodoPayments({ bearerToken: 'My Bearer Token', }); const customer = await client.customers.update('customer_id'); console.log(customer.business_id);
{ "business_id": "<string>", "created_at": "2023-11-07T05:31:56Z", "customer_id": "<string>", "email": "<string>", "name": "<string>", "metadata": {}, "phone_number": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Customer Id
Additional metadata for the customer
Show child attributes
Was this page helpful?