httpPut

Looking for the documentation on the newest versions of SIL Engine and the Simple Issue Language for Jira 8 for Server/Data Center? Click here !

Availability

This routine is available starting with SIL Engine™ 4.1.0.

Syntax

httpPut(url, request [, putDataObject])

Starting with SIL Engine™ 4.5.0: 

httpPut(url, request [[, proxy] [, putDataObject]])

Description

Executes an HTTP PUT for the given URL using the specified HttpRequest object. The data used for the PUT can be either included in the request object (as name-value parameters) or it can be added as a separate parameter (in the case of JSON, struct etc).

Requests can also be sent through a proxy.

Parameters

Parameter

Type

Required

Description

url

string

Yes

The URL.

requestHttpRequestYesAn HttpRequest object containing headers, cookies, parameters.
proxyHttpProxyNoAn HttpProxy object containing the host and port of the proxy server.
putDataObjectvariable: string, array or structNoData to be used for the PUT method.

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

Return type

variable return type - depending on the left hand side operator type

Example

The following example calls an HTTP PUT using the JIRA REST API that updates the assignee for the current ticket.

string baseUrl = getJIRABaseUrl();
string requestUrl = baseUrl + "/rest/api/2/issue/" + key;

HttpRequest request;
HttpHeader authHeader = httpBasicAuthHeader("admin", "admin");
request.headers += authHeader;
request.headers += httpCreateHeader("Content-Type", "application/json");
string updateInfo =  "{\"fields\": {\"assignee\":{\"name\":\"guest1\"}}}";

httpPut(requestUrl, request, updateInfo);

You can get the same result if, instead of the JSON, you use a SIL structure to store the data to be updated.

string baseUrl = getJIRABaseUrl();
string requestUrl = baseUrl + "/rest/api/2/issue/" + key;

HttpRequest request;
HttpHeader authHeader = httpBasicAuthHeader("admin", "admin");
request.headers += authHeader;
request.headers += httpCreateHeader("Content-Type", "application/json");

struct Assignee {
    string name;
}
struct Field {
    Assignee assignee;
}
struct UpdateInfo {
    Field fields;
}

UpdateInfo updateInfo;
updateInfo.fields.assignee.name = "guest1";

httpPut(requestUrl, request, updateInfo);

See also