Collections:
Parameter Types of REST API in SoapUI
What types of REST API parameters are supported in SoapUI?
✍: FYIcenter.com
SoapUI REST projects support the following types of REST API parameters:
1. Query Parameter - Query parameters are parameters encoded in the query string of the final requesting URL. For example, "http://api.example.com/orders/1001?format=xml" contains one query parameter: format=xml.
2. Template Parameter - Template parameters are parameters enbedded in the resource identification part of the final requesting URL. For example, "http://api.example.com//stock/{symbol}/quote" is REST API URL template that has one template parameter: symbol.
3. Header Parameter - Header parameters are parameters included as headers in the final HTTP request. For example, the following HTTP request contains one header parameter: X-Api-Key: DEMO_KEY.
GET https://api.example.com/news HTTP/1.1 X-Api-Key: DEMO_KEY ...
5. Matrix Parameter - Matrix parameters are parameters included in the final requesting URL after the resource path and before the query string. For example, "http://api.example.com/orders/1001;mode=test?format=xml" contains one matrix parameter: mode=test.
⇒ REST API Resource with Template Parameters
⇐ Add New Resource to REST API Service in SoapUI
2018-03-13, ∼3619🔥, 0💬
Popular Posts:
How to convert IPv4 to IPv6 addresses? In order to help your programming or testing tasks, FYIcenter...
How to validate domain name format? In order to help your programming or testing tasks, FYIcenter.co...
How to generate test fractional numbers? Test fractional numbers are numbers with fractions that are...
How to convert a date and time to a standard format? Date and time can be displayed in a number of s...
Where to find tutorials on Selenium test tools? I want to know how to use Selenium. Here is a large ...