Retrieve a specific brand by ID.
JavaScript
import DodoPayments from 'dodopayments'; const client = new DodoPayments({ bearerToken: 'My Bearer Token', }); const brand = await client.brands.retrieve('id'); console.log(brand.brand_id);
{ "brand_id": "<string>", "business_id": "<string>", "enabled": true, "statement_descriptor": "<string>", "verification_enabled": true, "verification_status": "Success", "description": "<string>", "image": "<string>", "name": "<string>", "reason_for_hold": "<string>", "support_email": "<string>", "url": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Brand Id
Get a single brand
Success
Fail
Review
Hold
Incase the brand verification fails or is put on hold
Was this page helpful?