Retrieving an event action with a subscription

You can use the Content Event Webhook feature to retrieve an event action and its subscription.

This example queries an event action using the event action ID:
{
  eevExternalEventAction 
  (repositoryIdentifier:"<objectStoreSymName>"
    identifier: "<eventActionId>"   #by id
	)
  {
    name
    owner
    progId
    eevExternalEventReceiverURL
    isEnabled
    cmTransactionTimeout
   subscriptions {      #data shaping subscriptions
      subscriptions {
        id
        name
        isEnabled
        isSynchronous
        subscribedEvents {
          eventClass {
            className
            symbolicName
          }
        }
      }
    }
  }
}