Skip to main content
GET
/
signals
/
{promptId}
/
executions
Retrieve signal executions
curl --request GET \
  --url https://api.momentum.io/v1/signals/{promptId}/executions \
  --header 'X-API-Key: <api-key>'
{
  "signals": [
    {
      "signalId": 123,
      "signalName": "<string>",
      "triggeredAt": "2023-11-07T05:31:56Z",
      "sourceId": "<string>",
      "sourceTitle": "<string>",
      "prompt": "<string>",
      "reason": "<string>",
      "salesforceAccountId": "<string>",
      "salesforceAccountName": "<string>",
      "salesforceOpportunityId": "<string>",
      "salesforceOpportunityName": "<string>",
      "salesforceLeadId": "<string>",
      "salesforceLeadName": "<string>",
      "sourceType": "<string>",
      "hostEmail": "<string>",
      "attendeeEmails": [
        "[email protected]"
      ],
      "customInstructions": [
        {}
      ]
    }
  ],
  "pageCount": 123
}

Authorizations

X-API-Key
string
header
required

API key for authenticating requests

Path Parameters

promptId
integer
required

The ID of the signal prompt to retrieve executions for.

Required range: x >= 1

Query Parameters

executionFrom
string<date-time>
required

Filter executions starting from this date-time (ISO 8601 format). Required.

executionTo
string<date-time>

Filter executions up to this date-time (ISO 8601 format). Defaults to current time if not specified.

pageNumber
integer
default:1

The page number to retrieve (1-based indexing). Defaults to 1 if not specified.

Required range: x >= 1
pageSize
integer
default:10

The maximum number of executions to return per page. Must be between 1 and 50. Defaults to 10 if not specified.

Required range: 1 <= x <= 50
includeCustomInstructions
boolean
default:false

Whether to include custom instruction outputs (follow-up prompts) in the response. Defaults to false.

Response

A paginated list of signal executions.

signals
object[]
required

An execution of a signal prompt, triggered by either a meeting or an email.

pageCount
integer
required

Total number of pages available for the current query.