SewerAI Notification Preferences API

The notification-preferences API from SewerAI — 4 operation(s) for notification-preferences.

Operations 8

GET /notification-preferences/ #
POST /notification-preferences/ #
POST /notification-preferences/create-by-category/ #
POST /notification-preferences/delete-by-category/ #
GET /notification-preferences/{sid}/ #
PUT /notification-preferences/{sid}/ #
PATCH /notification-preferences/{sid}/ #
DELETE /notification-preferences/{sid}/ #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sewerai-notification-preferences-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sewerai-notification-preferences-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Snippets Notification Preferences API
  description: Test description
  termsOfService: https://www.google.com/policies/terms/
  contact:
    email: contact@snippets.local
  license:
    name: BSD License
  version: v1
servers:
- url: https://574ea6n6tdopt2qigvs3hjzoha0nhhvj.lambda-url.us-west-2.on.aws/
security:
- Basic: []
tags:
- name: notification-preferences
paths:
  /notification-preferences/:
    parameters: []
    get:
      operationId: notification-preferences_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NotificationPreference'
      tags:
      - notification-preferences
    post:
      operationId: notification-preferences_create
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationPreference'
      tags:
      - notification-preferences
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationPreference'
        required: true
  /notification-preferences/create-by-category/:
    parameters: []
    post:
      operationId: notification-preferences_create_by_category
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationPreference'
      tags:
      - notification-preferences
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationPreference'
        required: true
  /notification-preferences/delete-by-category/:
    parameters: []
    post:
      operationId: notification-preferences_destroy_by_category
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationPreference'
      tags:
      - notification-preferences
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationPreference'
        required: true
  /notification-preferences/{sid}/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: notification-preferences_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationPreference'
      tags:
      - notification-preferences
    put:
      operationId: notification-preferences_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationPreference'
      tags:
      - notification-preferences
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationPreference'
        required: true
    patch:
      operationId: notification-preferences_partial_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationPreference'
      tags:
      - notification-preferences
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationPreference'
        required: true
    delete:
      operationId: notification-preferences_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - notification-preferences
components:
  schemas:
    NotificationPreference:
      required:
      - notification_type
      type: object
      properties:
        notification_method:
          title: Notification method
          type: string
          enum:
          - email
          - app
          default: app
        notification_type:
          title: Notification type
          type: string
          enum:
          - export_ready
          - digital_submittal_sent
          - digital_submittal_accepted
          - digital_submittal_received
          - digital_submittal_deleted
          - review_task_created
          - review_task_comment_created
          - review_task_comment_user_tagged
          - user_invited_to_account_or_project
        notification_type_category:
          title: Notification type category
          type: string
          readOnly: true
        sid:
          title: Sid
          type: string
          format: uuid
          readOnly: true
        url:
          title: Url
          type: string
          format: uri
          readOnly: true
        user:
          title: User
          type: string
          readOnly: true
          minLength: 1
  securitySchemes:
    Basic:
      type: http
      scheme: basic