Call SOAP API
These actions provide ability to use SOAP services for third-party integrations.
Call SOAP API Actions
GetAvailableOperations
Field
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Call SOAP API GetAvailableOperations action eventMeta fields",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"outputElement": {
"type": "string",
"definition": "Json path for the output in response event payload",
"example": "ops",
"default": "list"
}
}
}
}
}Parameter
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Call SOAP API GetAvailableOperations action eventMeta.parameters",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"parameters": {
"type": "object",
"properties": {
"serviceName": {
"type": "string",
"definition": "Name of the service to get operations for",
"example": "price_calculator",
"default": null
}
}
}
}
}
}
}Invoke
Field
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Call SOAP API Invoke action eventMeta fields",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"inputElement": {
"type": "string",
"definition": "Json path for the input in request event payload",
"example": "parameters",
"default": null
},
"outputElement": {
"type": "string",
"definition": "Json path for the output in response event payload",
"example": "ops",
"default": "list"
}
}
}
}
}Parameter
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Call SOAP API Invoke action eventMeta.parameters",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"parameters": {
"type": "object",
"properties": {
"inputPattern": {
"type": "string",
"definition": "JMESPath pattern to apply on data input",
"example": "{\"item\": product}",
"default": null
},
"outputPattern": {
"type": "string",
"definition": "JMESPath pattern to apply on data output",
"example": "{\"product_price\": price}",
"default": null
},
"serviceName": {
"type": "string",
"definition": "Name of the service to use",
"example": "price_calculator",
"default": null
},
"operation": {
"type": "string",
"definition": "Name of the operation to call",
"example": "calculate",
"default": null
}
}
}
}
}
}
}Last updated
