curl -X POST '{backend_url}/admin/views/{entity}/configurations/active' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'Content-Type: application/json' \
--data-raw '{
"view_configuration_id": "{value}"
}'{
"success": true
}Make a view configuration active. This will set the given view configuration as the active one for the specified entity for the admin user. An admin user can only set their own configurations as active. If the view configuration ID is null, the active view configuration will be cleared, and the code or system default view configuration type will be used as the active view.
curl -X POST '{backend_url}/admin/views/{entity}/configurations/active' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'Content-Type: application/json' \
--data-raw '{
"view_configuration_id": "{value}"
}'{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The entity to update its view configuration (for example, orders).
The details of a view configuration to set as active for the given entity.
The ID of the view configuration to set as active. If null, the active view configuration will be cleared, and the code or system default view configuration will be used as the active view.
OK
The details of the operation.
Whether the operation was successful.