Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
Successful Response
The response is of type any.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.brand.revet('brandId');
console.log(response);"<any>"This operation allows you to revet the brand. However, revetting is allowed once after the successful brand registration and thereafter limited to once every 3 months.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.brand.revet('brandId');
console.log(response);"<any>"Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
The response is of type any.
Was this page helpful?