Company logoTrust Center Documentation
API v1 ReferenceCustom tabsId

Delete a custom tab

Permanently delete a custom tab.

DELETE
/api/v1/custom-tabs/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Custom tab ID.

Match^[a-zA-Z0-9-]+$
Length1 <= length <= 64

Response Body

application/json

application/json

application/json

curl -X DELETE "https://app.orbiqhq.com/api/v1/custom-tabs/tab-123"
Empty
{
  "code": "unauthorized",
  "message": "Authentication required.",
  "details": "Include a valid Authorization header."
}
{
  "code": "forbidden",
  "message": "You do not have access to delete this tab.",
  "details": "Ensure your role allows deleting custom tabs."
}
{
  "code": "not_found",
  "message": "Custom tab not found.",
  "details": "Confirm the tab id in the admin center."
}

How is this guide?