You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »


FieldDescription
bodyThe request body.
headersAll request headers.
queryParamsThe query parameters from the request.
queryStringThe query added to the endpoint URL.
URIThe entire request URL.
URLThe entire request URL.

Example:

URI
const query = request.uri; //"api/now/table/myTable"	
Source request URL: https://instance.simpleone.ru/api/now/table/myTable?active=false&name=now.
URL
const query = request.url; //"https://instance.simpleone.ru/api/now/table/myTable?active=false&name=now"
Source request URL: https://instance.simpleone.ru/api/now/table/myTable?active=false&name=now
  • No labels