Page History
Calls the indicated HTTP web service routine.
Syntax
Code Block |
---|
Response = HTTP_Services('RunHTTPService', HTTPService, RemainingURL) |
Returns
N/A
Parameters
Parameter | Description |
---|---|
HTTPService | The HTTP (or web) service to call. Required. |
RemainingURL | This is the remaining portion of the URL that has not yet been processed by previous services. Required. |
Remarks
The RunHTTPService service is the official way to call specific web service APIs. The HTTPService argument should contain the same name found in the URL segment that corresponds with the API resource. For instance, for the /customers
URL, the HTTPService argument should contain the value of customers. This will call the HTTP_CUSTOMERS_SERVICES
BASIC+ routine.
...