From the Redfish Specification, section 7.12, it demonstrates the following DELETE request:
DELETE /redfish/v1/Systems/1/Storage/SATAEmbedded/Volumes/2 HTTP/1.1
Content-Type: application/json;charset=utf-8
Content-Length: <computed length>
OData-Version: 4.0
{
"@Redfish.OperationApplyTime": "OnReset"
}
According to this library, DELETE does not support the body parameter in order to send a JSON request body such as this.
Is it possible for this library to do DELETE requests such as this one, which may have a body?
From the Redfish Specification, section 7.12, it demonstrates the following DELETE request:
DELETE /redfish/v1/Systems/1/Storage/SATAEmbedded/Volumes/2 HTTP/1.1 Content-Type: application/json;charset=utf-8 Content-Length: <computed length> OData-Version: 4.0 { "@Redfish.OperationApplyTime": "OnReset" }According to this library, DELETE does not support the
bodyparameter in order to send a JSON request body such as this.Is it possible for this library to do DELETE requests such as this one, which may have a body?