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