Skip to main content
POST
/
api
/
workspaces
/
{workspaceId}
/
signals
/
{signalId}
cURL
curl -X POST http://localhost:18080/api/workspaces/abc123/signals/daily-trigger \
  -H 'Content-Type: application/json' \
  -d '{"payload": {"key": "value"}}'
{
  "message": "Signal completed",
  "status": "completed",
  "workspaceId": "<string>",
  "signalId": "<string>",
  "sessionId": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.hellofriday.ai/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

workspaceId
string
required
signalId
string
required

Body

application/json
payload
object

Optional payload to pass to the triggered job

Response

200 - application/json

Signal triggered

message
string
Example:

"Signal completed"

status
string
Example:

"completed"

workspaceId
string
signalId
string
sessionId
string