Frends.Salesforce.PubSubPublish / 1.0.0
Summary
Publishes an event to a Salesforce Pub/Sub topic with headers, so external activity can trigger Salesforce automation.
Typical use — notifying Salesforce of something that happened elsewhere, without writing records directly
Essential parameters.
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| TopicName | String |
– | MyCustomEvent__e |
The topic or event name to publish to. |
| Payload | String |
– | { "field": "value" } |
The message payload to send in Json format correct with topic schema. |
| Headers | List<Header> |
– | object[] { object { string Key, string Value } } |
Optional headers to include with the message. |