site logo

Tettra Help Docs

  • Category IconGetting Started
  • Category IconUsing Tettra
  • Category IconKai AI Features
  • Category IconIntegrations
    • Category IconSlack Integration
    • Category IconGoogle Workspace Integration
    • Category IconGitHub Integration
    • Category IconZapier Integration
    • Category IconNotion Integration
    • Category IconAPI Overview
      • What is the Tettra API?
      • How to find your API credentials
      • API Endpoint: Search
      • API Endpoint: Create Page
      • API Endpoint: Create a Question
      • API Endpoint: Suggest a New Page
      • API Endpoint: Suggest Page Update
  • Category IconUsers & Permissions
  • Category IconAccount Management
  • Category IconBilling & Payments
  • Category IconSecurity

API Endpoint: Suggest Page Update

The Suggest Page Update endpoint creates a new suggestion to update an existing page.

 

URL: https://app.tettra.co/api/teams/{{team_id}}/suggestions 

 

HTTP Method: POST

 

Arguments: 

  • api_key - required - your API key; this determines the creator of the suggestion  
  • update - required - (boolean) indicates this is a suggestion for an update to an existing page (instead of a new page) 
  • page_id - required - the id of the page that needs updating 
  • description - optional - more context about the suggested change 
  • assignable_id - optional - the id of the user to assign the suggestion


 Example:

curl -X POST  -H 'Content-Type: application/json'   \
   --data \
   '{
       "api_key":"xxxxxxxxxxxxxxxxxx1234567890",
        "update":true,
        "description":"Update this outdated page",
        "page_id":2,
        "assignable_id":22
   }' \
   https://app.tettra.co/api/teams/2/suggestions


Related 

  • API overview
Previous
API Endpoint: Suggest a New Page
Next
Users and Permissions Overview
Powered by Tettra