Recent memos

Recent memos

To find recent memos for an integration, use the POST /zapier/list endpoint.

Request

To get all recent memos for integration add to trello, send a POST request to https://whispermemos.com/zapier/list with the following body:

{ "integrationId": "add to trello" }

Example:

curl -X POST https://whispermemos.com/zapier/list \
     -H "X-API-KEY: aaaa-bbbb-cccc-dddd" \
     -H "Content-Type: application/json" \
     -d '{"integrationId": "add to trello"}'

Response

The response will look different for each formatType of your integration.

The returned memos will be limited to 20. If you want to react to memo being created, it's best to periodically check for new memos.

Plain text

The response will contain most recent memos and their full content as plain text. Each memo can generate only one entry in the response.

[
  {
    "formatType": "plainText",
    "content": "Today I created the documentation site"
  }
  // ...
]

Checklist

The response will contain an entry for each list item. If a single memo contains multiple list items, it will generate multiple entries in the response.

[
  {
    "formatType": "checklist",
    "itemContent": "Broccoli"
  },
  {
    "formatType": "checklist",
    "itemContent": "Mushrooms"
  }
  // ...
]

Calendar event

The response will contain most recent memos and their calendar events. Each memo can generate only one entry in the response.

[
  {
    "name": "Testing event",
    "start": "2023-08-05T10:00:100.000Z",
    "end": "2023-08-05T11:00:100.000Z",
    "formatType": "calendarEvent"
  }
  // ...
]