API: Send Clip to Notion
Send one ready Clip to the authenticated user’s configured Notion Clip database.
Endpoint
POSThttps://app.podwise.ai/api/open/v1/clips/[id]/send/notion
Path Parameters
id: Positive integer Clip ID.
Response
type Response = {
success: true,
result: {
url: string,
// Present when the page was created but some content failed to write
warning?: string,
},
}Error Responses
| Status | Error | Description |
|---|---|---|
| 400 | — | Invalid Clip ID. |
| 400 | not_connected | Notion is not connected. |
| 400 | not_configured | The Notion Clip database is not configured. |
| 400 | property_not_exists | A configured Notion property does not exist. |
| 401 | unauthorized | The Notion API token is invalid or expired. |
| 402 | — | Open API or export features are not available for the current plan. |
| 404 | not_found | Clip does not exist or is not owned by the authenticated user. |
| 404 | not_ready | Clip is not ready to export. |
| 404 | database_not_found | The configured Notion database was not found. |
| 429 | rate_limited | Notion rate limited the request. |
| 502 | notion_error | Unexpected Notion API error. |
| 504 | timeout | Notion API request timed out. |
Last updated on