Process a Smoke Signal webhook event.
Input
Encoding
application/jsoncontext
object
Required
No description provided.
event
string
Required
No description provided.
record
object
Required
No description provided.
Output
Encoding
application/jsonTry It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"event",
"record",
"context"
],
"properties": {
"event": {
"type": "string",
"knownValues": [
"test",
"rsvp.created",
"event.created"
]
},
"record": {
"type": "object",
"properties": {}
},
"context": {
"type": "object",
"properties": {}
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"properties": {}
},
"encoding": "application/json"
},
"description": "Process a Smoke Signal webhook event."
}