Skip to main content

List triggers

Gets a list of triggers configured in the authenticated workspace.

GET https://api.cogfy.com/triggers

Response body

  • data: Array of trigger objects.
    • id: The ID of the trigger.
    • collectionId: The ID of the collection the trigger is in.
    • fieldId: The ID of the field that receives the request body.
    • key: The unique key that identifies the trigger, used to build the trigger URL.

Example JSON response

{
"data": [
{
"id": "5c05c60d-04af-4aeb-a29e-fe31c7a3f7a4",
"collectionId": "68dc8542-729d-4586-9317-8fe194c7141f",
"fieldId": "530d70a2-e05c-495c-8f23-8a3b6939d0bc",
"key": "26ef4dcc126a7137ff049f2c7209f311b8ef82c76076ac0c9202bb4ae3f36cc4"
}
],
"totalSize": 1,
"pageNumber": 0,
"pageSize": 10
}