You are here:
Integration Procedure Invocation from REST APIs (Managed Package)
For the managed package runtime, you can use either a GET or a POST call to invoke an Integration Procedure and retrieve the result. The difference between the two is that a GET call can't include a JSON request body.
This information is for Omnistudio for Managed Packages. For Omnistudio on standard runtime, see Omnistudio Help.
For an example, see Invoke a Chainable Integration Procedure with REST Calls (Managed Package).
- Integration Procedure Invocation Using GET (Managed Package)
For the managed package runtime, to request JSON data from an Integration Procedure, issue a GET call. With a GET call, you can specify inline values in the URL path and append query parameters to the URL. You can't pass data with a JSON request body. - Integration Procedure Invocation Using POST (Managed Package)
For the managed package runtime, to send JSON data to an Integration Procedure, issue a POST call. With a POST call, you can specify inline values in the URL path, append query parameters to the URL, and include a JSON request body.

