curl -X DELETE '{backend_url}/admin/views/{entity}/configurations/{id}' \
-H 'Authorization: Bearer {jwt_token}'{
"id": "<string>",
"object": "view_configuration",
"deleted": true
}Remove view configurations of an entity. An admin user can only delete their own configurations.
curl -X DELETE '{backend_url}/admin/views/{entity}/configurations/{id}' \
-H 'Authorization: Bearer {jwt_token}'{
"id": "<string>",
"object": "view_configuration",
"deleted": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The entity to delete its view configuration (for example, orders)
The ID of the view configuration to delete