Skip to main content
Question

is there any kind of documentation for using the azure event grid subscriber?

  • November 7, 2019
  • 1 reply
  • 21 views

jpvo
Contributor
Forum|alt.badge.img+2

Hello,

I'm trying to use the azure event grid subscriber but the actual documentation doesn't specify how to send dynamic key/value:

http://docs.safe.com/fme/2019.0/html/FME_Server_Documentation/ReferenceManual/Azure-Event-Grid-Subscriber.htm

Idealy, I would hope we could parse some sort of "subscriber_content" through the TOPIC but we never managed to get anything working. We only succeeded in sending hard coded key/values.

I would expect a list of keywords like in other subscribers but none are documented.

Any idea?

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

1 reply

Forum|alt.badge.img+2

Hi @jpvo

 

 

Are you looking to send the key/values through the event data?

 

What kind of dynamic key/value pairs would you be looking to create?

 

Are you using Automations or Notifications?

 

 

I had a look in automations and it seems like you can't use the text editor to pass values through, like you can in the other fields.

 

 

If you're using notifications, I'm wondering is if you format the JSON correctly that gets posted to the Azure Event Grid it will override the subscriber settings, like you can with email (see the bottom of this: http://docs.safe.com/fme/html/FME_Server_Documentation/ReferenceManual/EmailSubscriber.htm)

 

 

 

I wonder if you send JSON with the

 

{

 

"EVENT_GRID_DATA" : { "key1" : "value1", "key2": "value2"}

 

}

 

 

whether that would work. (Note, I haven't tested this)

 

Let me know if it works - if not I'll chat to development and see if there is any way to do this.