6.1 About Queries

A query string is an additional information appended to an URL that may affect a type and a format of data returned and how the request is processed on the server. A URL with a query string has following format:

http://host/api/resource?query

A query may be a parameter with a value. A query with a parameter and value has following format:

http://host/api/resource?parameter=value

Multiple parameters may be present. A query with multiple parameters has following format:

http://host/api/resource?parameter1=value1&parameter2=value2