[[data-views-runtime-field-api-delete]] === Delete runtime field API ++++ Delete runtime field ++++ experimental[] Delete a runtime field from a data view. [[data-views-runtime-field-api-delete-request]] ==== Request `DELETE :/api/data_views/data_view//runtime_field/` `DELETE :/s//api/data_views/data_view//runtime_field/` [[data-views-runtime-field-api-delete-path-params]] ==== Path parameters `space_id`:: (Optional, string) An identifier for the space. If `space_id` is not provided in the URL, the default space is used. `data_view_id`:: (Required, string) The ID of the data view your want to delete a runtime field from. `name`:: (Required, string) The name of the runtime field you want to delete. ==== Example Delete a runtime field from a data view: [source,sh] -------------------------------------------------- $ curl -X DELETE api/data_views/data_view//runtime_field/ -------------------------------------------------- // KIBANA