GET
/
signals
/
{id}
curl --request GET \
  --url https://api.pipeium.com/signals/sig_123e4567 \
  --header 'Authorization: Bearer {api_key}'
{
  "signal": {
    "id": "sig_123e4567",
    "type": "current_role",
    "level": "CONTACT",
    "strategy": "RECORD_WISE",
    "metadata": {
      "notify_mode": "on_change"
    }
  },
  "rows": [
    {
      "id": "row_123",
      "value": "Sales Director",
      "previousValue": "Sales Manager",
      "updatedAt": "2024-01-20T15:30:00Z"
    }
  ]
}
Retrieve detailed information about a specific signal, including its configuration and current status.

Path Parameters

id
string
required
The ID of the signal to retrieve

Query Parameters

filter
string
Optional contact or account ID to filter signal rows

Response

signal
object
Signal configuration
rows
array
Array of signal rows
curl --request GET \
  --url https://api.pipeium.com/signals/sig_123e4567 \
  --header 'Authorization: Bearer {api_key}'
{
  "signal": {
    "id": "sig_123e4567",
    "type": "current_role",
    "level": "CONTACT",
    "strategy": "RECORD_WISE",
    "metadata": {
      "notify_mode": "on_change"
    }
  },
  "rows": [
    {
      "id": "row_123",
      "value": "Sales Director",
      "previousValue": "Sales Manager",
      "updatedAt": "2024-01-20T15:30:00Z"
    }
  ]
}