USING gate FROM A COMMAND LINE

Last updated: 28-Sep-2023

Each entry on this page includes a code block showing an example command line. This may be copied into an editor of choice (such as notepad++) and changed as needed.

Each of these examples uses the "wget" command for simplicity. Other choices like "curl" or even "postman" also work. The URL of each "wget" command must be enclosed in double-quote (") characters because many of the URLs include characters that are otherwise interpreted as special characters by the "bash" command-line shell.

The modified result can be pasted into a standard SSH client like putty in order to get the result of running the (modified) command.

Each successful (200) response is a JSON-encoded Javascript literal object containing the requested information.

NOTE: A prefix of @ in this document means that the identifier refers to a query-string parameter in the URL of an endpoint. For example, "@prName" refers to the left-hand side of a query string pair like "prName=anndeletePR", where the right-hand side is the value of the query-string parameter.

Each query-string of each endpoint is sequence of query-string pairs separated by an ampersand ("&") character.

The value of each query-string pair must be URL-encoded. One convenient tool for obtaining a URL-encoded string is (URlEncoder).