9.58.4 NordPool UDRs
The NordPool agent has three UDR types;
- SubscribeUDR
- MessageUDR
- ResponseUDR
SubscribeUDR
This UDR is used for subscribing to a specific topic.
Field | Description |
---|---|
topicURL (string) | This field contains the URL for the topic you want to subscribe to. |
MessageUDR
This UDR is used for sending messages to topics.
Field | Description |
---|---|
message (string) | This field contains the content of the message. |
topicURL (string) | This field contains the URL for the topic that the message is supposed to be sent to. |
ResponseUDR
This UDR is used for sending the content from the received messages into the workflow.
Field | Description | ||||
---|---|---|---|---|---|
body (string) | This field contains the body content of the message in a JSON format. This content will typically have to be decoded in APL using the jsonDecode() function. | ||||
header (map<string,string>) | This field contains a mapping of the header content of the message. The format is a mapping of values in string format, e g:
| ||||
type (string) | This field indicates the type of the message. |
Next subsection: