DELETE
https://app.evoriqa.com/api/v1/reseller/brandReset the brand
Resets styling to the platform default (domain and sender config are left intact). Requires the typed confirmation and an active reseller plan. Reseller endpoints additionally require the key to live on the organization owner's own (primary) workspace — any other workspace returns 403.
Requires scope reseller:write
Warning:
Access is gated — enable it before your first call
The API is off by default. A request succeeds only when all three switches are on: the platform master switch (off by default), your organisation’s API toggle, and your plan or client entitlement. Any one off returns 403 API access is not enabled for this workspace.
Request body
Content type: application/json
| Field | Type | Required | Description |
|---|---|---|---|
| confirm | string the literal RESET | Required | Must be the literal string RESET. |
Request
curl
curl -X DELETE "https://app.evoriqa.com/api/v1/reseller/brand" \
-H "x-api-key: $EVORIQA_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "confirm": "RESET" }'Node.js
const res = await fetch("https://app.evoriqa.com/api/v1/reseller/brand", {
method: "DELETE",
headers: {
Authorization: `Bearer ${process.env.EVORIQA_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
"confirm": "RESET"
}),
});
const responseBody = await res.json();Python
import os
import requests
res = requests.delete(
"https://app.evoriqa.com/api/v1/reseller/brand",
headers={"Authorization": f"Bearer {os.environ['EVORIQA_API_KEY']}"},
json={
"confirm": "RESET"
},
)
body = res.json()Response
200 OK
{
"success": true,
"data": {
"appName": "Evoriqa",
"primaryColor": "#4373fc",
"showPoweredBy": true,
"isCustom": false
}
}