import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: 'My Bearer Token',
});
await client.meters.archive('id');
Archive a meter by its ID.
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: 'My Bearer Token',
});
await client.meters.archive('id');
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Meter ID
Meter deleted successfully
Was this page helpful?