Http_SendRequest_DELETE
Sends a DELETE request to server and receives a text answer.
Syntax
C++
Python
def Http_SendRequest_DELETE( inUrl: str, inHeaders: list[str], inHeadersData: list[str], inFields: list[str], inFieldsData: list[str], /, *, inTimeout: int = 60, inAllowUntrusted: bool = False, inCaCertFile: str | None = None ) -> ( outAnswer: str | None, outResponseCode: int )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inUrl | str | URL of request. Without parameters. | ||
![]() |
inHeaders | list[str] | Request headers to send. They will be automatically encoded. | ||
![]() |
inHeadersData | list[str] | Request headers to send. They will be automatically encoded. | ||
![]() |
inFields | list[str] | Request data to send. It will be automatically encoded. | ||
![]() |
inFieldsData | list[str] | Request data to send. It will be automatically encoded. | ||
![]() |
inTimeout | int | 0 - ![]() |
60 | Request timeout in seconds. |
![]() |
inAllowUntrusted | bool | False | Whether or not to allow untrusted SSL certificates. | |
![]() |
inCaCertFile | str | None | None | File holding one or more certificates to verify the peer with. | |
![]() |
outAnswer | str | None | Answer text if provided in UTF-8 encoding. | ||
![]() |
outResponseCode | int | Answer code. Typically 200 for OK. |



