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>", "phone_number": "<string>" }
Update a customer’s information.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Customer Id
The response is of type object.
object