SBM Orchestration Guide → Calling RESTful Web Services from an Orchestration Workflow → RESTCaller Operations
This section describes the available RESTCaller operations.
Sends an HTTP PUT request to the rest service URL. Generally used for creating the addressed resource.
Arguments:
Options that apply:
Sends an HTTP GET request to the rest service URL. Generally used for retrieving the addressed resource, but some services may use GET for other purposes as well.
Arguments:
Options that apply:
Sends an HTTP POST request to the rest service URL. Generally used for updating the addressed resource.
Arguments:
Options that apply:
Sends an HTTP DELETE request to the rest service URL. Generally used for deleting the addressed resource.
Arguments:
Options that apply:
Another workaround is to use an alternate HTTP header such as X-HTTP-Method-Override: PATCH, X-HTTP-Override, or X-Method-Override. Whether these headers work or not depends on the framework that implements the REST service.
Returns the headers that result from GET but does not return the resource.
For more information, visit https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html.
Returns information about methods the resource supports, typically with an Allow header that lists the operations. Request and response body data is optional.
For more information, visit https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html.
Allows partial updates of resources.
For more information, visit https://tools.ietf.org/html/rfc5789.
Returns the sent message as it is received.
For more information, visit https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html.
Copyright © 2007–2019 Micro Focus or one of its affiliates. All rights reserved.