Update an existing brand’s details.
JavaScript
import DodoPayments from 'dodopayments'; const client = new DodoPayments({ bearerToken: 'My Bearer Token', }); const brand = await client.brands.update('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
The UUID you got back from the presigned‐upload call
Updated Brand
Success
Fail
Review
Hold
Incase the brand verification fails or is put on hold
Was this page helpful?