Start of change

HTTPDELETEBLOB and HTTPDELETECLOB scalar functions

The HTTPDELETEBLOB and HTTPDELETECLOB REST functions delete a binary or text-based resource from the specified URL through an HTTP DELETE request.

Read syntax diagramSkip visual syntax diagram HTTPDELETEBLOBHTTPDELETECLOB ( URL => url , HTTPHEADER =>  httpHeader )
The schema is SYSTOOLS.
url
Specifies the URL of the resource being accessed. This parameter is a VARCHAR(2048) CCSID 1208 value.
httpHeader
Specifies an optional header XML document. To use the default HTTP header, specify NULL or the empty string. This parameter is a CLOB(10K) CCSID 1208 or an XML value.
See Foundational HTTP functions for a description of the header content.

For the HTTPDELETEBLOB function, the result response message is returned as BLOB(2G). For the HTTPDELETECLOB function, the result response message is returned as CLOB(2G) CCSID 1208.

End of change