n8n-nodes-azure-messagebus-send-receive v0.0.1
n8n-nodes-azure-messagebus-send-receive
This is an n8n community node. It lets you use the azure messagebus in your n8n workflows.
This is a very basic implementation that only allows you to send to a specific endpoint as part of configuration of the node
n8n is a fair-code licensed workflow automation platform.
Installation Operations Credentials Compatibility Usage Resources Version history
Installation
Follow the installation guide in the n8n community nodes documentation.
Operations
send message to azure messagebus
Credentials
use your connectionString to the message bus in the format:
Endpoint=sb://<HOSTNAME>.servicebus.windows.net/;SharedAccessKeyName=<SHAREDKEYNAME>;SharedAccessKey=<SHAREDKEY>;
Note the ; at the end of the line
Compatibility
Tested on 1.6.1
Usage
By the time users are looking for community nodes, they probably already know n8n basics. But if you expect new users, you can link to the Try it out documentation to help them get started.
Resources
- n8n community nodes documentation
- https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-messaging-overview
Version history
v0.0.1 - basic funcionality. no q change ability to make the node faster
Exemplo de Payload para enviar
{{ { teste: $json.my_field_1 } }}
Saída
[
{
"success": true,
"operation": "send",
"topic": "testes",
"subscriptionName": "subscription_testes",
"messageSent": {
"teste": "value"
}
}
]
5 months ago