Integrations

Integrations

To find all user's integrations, use the POST /zapier/integrations endpoint.

Request

Use POST method to make the request, and include the user's API key in the header.

Example request:

curl -X POST https://whispermemos.com/zapier/integrations \
     -H "X-API-KEY: aaaa-bbbb-cccc-dddd"

Response

Response will contain all user's integrations.

  • id - Integration's Zapier ID as defined by the user
  • trigger - Trigger phrase that will cause AI to detect this integration
  • formatType - How should the data be formatted before being send to the handler. Possible values are plainText, checklist and calendarEvent.

Example response:

[
  {
    "id": "add to groceries",
    "trigger": "Add these items to my grocery list",
    "formatType": "checklist"
  },
  {
    "id": "add to journal",
    "trigger": "Write to my journal",
    "formatType": "plainText"
  }
]