import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: 'My Bearer Token',
});
const customer = await client.customers.retrieve('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>"
}
Get detailed information about a specific customer.
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: 'My Bearer Token',
});
const customer = await client.customers.retrieve('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>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Customer Id
The response is of type object
.