Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table plus
applyColStyleToCelltrue
heading0
columnTypess,s,s,s
multiplefalse
columnAttributesstyle="background:#e5e7ea;font-weight:bold,,style="background:#e5e7ea;font-weight:bold,
enableSortingfalse

Syntax

httpDelete(url, request [

[

, proxy

] [, deleteDataObject

]

]

)

Package

http

Alias

Pkg Usage

delete(url, request [

[

, proxy]

[, deleteDataObject]]

)

Description

Excerpt
hiddentrue
Executes an HTTP DELETE for a given URL using the specified HttpRequest object.

Executes an HTTP DELETE for a given URL using the specified HttpRequest object. The needed parameters can either be included in the initial url or they can be created using the httpCreateParameter routine and added to the HttpRequest parameter.Requests can also be sent through a proxy.

...

Normally, http delete requests do not need a body. However, we were signaled that some APIs do require some data inside the body, so we adapted to this situation by adding this optional parameter
Table plus
applyColStyleToCelltrue
columnTypess,s,s,s
heading0
multiplefalse
enableSortingfalse

Parameter name

Type

Required

Description

url

String

Yes

The URL.

request

HttpRequest

Yes

An HttpRequest object containing headers, cookies, parameters.

proxy

HttpProxy

No

An HttpProxy object containing the host and port of the proxy server

.

deleteDataObject

variable: primitive type, array or struct

No

.

It contains the data to be added to the body.

Return Type

String#1

Variable return type depends on the left hand side operator type.

...

The following example calls an HTTP DELETE using the JIRA REST API that results in deleting the user with the "guest1" username from the "jira-guests" group.

Code Block
languagejs
string baseUrl = ();
string requestUrl = baseUrl + "/rest/api/2/group/user";

HttpRequest request;
HttpHeader authHeader = httpBasicAuthHeader("admin", "admin");
request.headers += authHeader;
request.parameters += httpCreateParameter("groupname", "jira-guests");
request.parameters += httpCreateParameter("username", "guest1");

httpDelete(requestUrl, request);

Note

The request parameter should have the HttpRequest type described here. The HttpProxy type is described here.

See also

Filter by label (Content by label)
showLabelsfalse
max25
showSpacefalse
cqllabel = "http_routine" and space = currentSpace ( )
labelsarray_routines