curl --request POST \
--url 'https://api.plyne.ai/v1/monitor/custom-signals' \
--header 'Authorization: Bearer plyne_...' \
--header 'Content-Type: application/json' \
--data '{
"statuses": ["active"],
"cursor": { "limit": 50 }
}'
{
"data": [
{
"id": "d8signaldefinitionid",
"name": "Tech stack migration",
"question": "Did {company} recently adopt ServiceTitan?",
"status": "active"
}
],
"cursor": {
"next": "",
"has_more": false
}
}
POST /v1/monitor/custom-signals
Body
statusesstring[]
Filter by Custom Signal status.
Example: [“active”]
cursor.limitinteger
Number of Custom Signals to return. Maximum value is 100.
cursor.afterstring
Opaque cursor returned as cursor.next from the previous response.