Inbound Webhooks

Inbound Webhooks are unique endpoints that can be embedded into your applications to notify Webex Connect of events occurring in the your application(s).

In essence, they work the same way as custom event API v1 but are flexible with the input JSON/XML body that will be parsed as JPath/Xpath and the variables will be made available in flows/rules.

Authentication

We support two types of authentication for inbound webhooks:

  • Service Key based authentication
  • JWT based authentication

When authentication is enabled you need to use one of service key or JWT credentials associated with the relevant Webex Connect service which contains the rule/flow you've associated the inbound webhook with.

Signature Validation

In addition, we offer support for signatures (using SHA 256 or SHA 512) within headers of inbound webhooks that trigger flows. It will add an additional layer of security to your inbound webhook requests and help safeguard against potential security threats. When signatures are enabled, invalid requests will return an HTTP 400 error.

🚧

Difference between Authentication and Signature Validation

Service Key or JWT Tokens enables you to validate that the request is being made by an authenticated entity. Signature Validation enables you to ensure the integrity of data and ensure that it wasn't intercepted during the transition from the source till it's received on Webex Connect.

We encourage you to use both these options as per security best practices.

Once an inbound webhook has been configured, it can start accepting any JSON/XML payload. The payload is passed to the linked rule and/or flow. You can also enter example JSON or send a live request to parse. These parameters will be saved and available for usage in rules and flows when you start typing with $ to search for a variable.

🚧

If you invoke an Inbound Webhook that's not associated with any flow or rule, the system will queue it but no action will be taken at the back of it.

Here is an example of how a sample JSON is parsed.

Please note that the service key / JWT token will need to be passed in the header of the request, with header name as key.

{  
   "data":[  
      {  
         "type":"articles",
         "id":"1",
         "attributes":{  
            "title":"JSON API paints my bikeshed!",
            "body":"The shortest article. Ever.",
            "created":"2015-05-22T14:56:29.000Z",
            "updated":"2015-05-22T14:56:28.000Z"
         }
      }
   ]
}

Parsed variables for above sample

ParameterParsed value
data.typearticles
data.id1
data.attributes.titleJSON API paints my bikeshed!
data.attributes.bodyThe shortest article. Ever.
data.attributes.created2015-05-22T14:56:29.000Z
data.attributes.updated2015-05-22T14:56:28.000Z

Response Codes

Inbound Webhooks are asynchronous. When you send a request to inbound webhooks, Webex Connect returns an immediate response code and description to confirm whether your request has been successfully queued or not. Here's the list of various response codes with their description.

Response CodeMessageDescription
1002QueuedReturned when the request is accepted by Webex Connect.
7000Invalid JSONReturned when an invalid JSON request is sent.
7001Authentication failedReturned when an invalid service key or profile key is provided in the request.
7002Service Key MissingService key is missing in the inbound webhook request.
7005Internal error occurredReturned when there is an issue with Webex Connect.
7007Service inactiveThe service does not exist or is deleted.
7008Request received on an invalid or unsaved event endpointThe inbound webhook endpoint does not exist.
7010Source IP is not allow listedSource IP is not in the allow list of IPs.
7020You have reached maximum transaction limitReturned when you have reached the transaction limit.
7027Invalid XMLReturned when an invalid XML request is sent.
7028Invalid signatureSignature validation failed.
7029Mandatory Signature MissingSignature is mandatory for the inbound webhook and is missing in the request.

📘

Know Your Endpoint

Based on the domain you use to log in to Webex Connect, the endpoint for your API varies. See the endpoint section to understand which endpoint to use for your domain.