The Gateway Integration Endpoint bind is accessed from JavaScript in business rule conditions and actions. The bind can work with the REST methods included in the table below.
|
REST Method |
Syntax Example |
|---|---|
delete |
delete().path("products").pathQuery({workspace: "Approved", context: "GL"}).body("Test").invoke();
|
get |
get().path("products").pathQuery({ workspace: "Approved", context: "GL"}).invoke(); |
head |
head().path("products").pathQuery({ workspace: "Approved", context: "GL"}).invoke(); |
options |
options().path("products").pathQuery({ workspace: "Approved", context: "GL"}).invoke(); |
post |
post().path("products").pathQuery({ workspace: "Approved", context: "GL"}).invoke(); |
put |
put().path("products").pathQuery({ workspace: "Approved", context: "GL"}).body("Test").invoke();
|
For more information, see the Business Action Accesses Gateway Integration Endpoint section here.
For more information about the available methods, see the STEP API documentation.
2017, Stibo Systems