ActionStreamer Notification API

The Notification API from ActionStreamer — 3 operation(s) for notification.

Operations 5

GET /v1/notification/{notificationID} Gets a notification by ID #
PUT /v1/notification/{notificationID} Updates a notification #
DELETE /v1/notification/{notificationID} Deletes a notification #
GET /v1/notification/list Gets the notification list #
POST /v1/notification Creates a notification #

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/actionstreamer-notification-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

actionstreamer-notification-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ActionStreamer Notification API
  description: 'A web API for the ActionStreamer platform. Publish date: 2026-07-07 16:13:41 UTC'
  termsOfService: https://actionstreamer.com/terms-of-use
  contact:
    name: Contact
    url: https://actionstreamer.com/company
  version: v1
tags:
- name: Notification
paths:
  /v1/notification/{notificationID}:
    get:
      tags:
      - Notification
      summary: Gets a notification by ID
      parameters:
      - name: notificationID
        in: path
        description: The ID of the notification to retrieve.
        required: true
        style: simple
        schema:
          type: integer
          format: int64
          example: 1
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Notification'
              example:
                key: 1
                notificationStatusID: 1
                message: Example value
                seenInApp: true
                seenDate: '2026-03-30T12:00:00.0000000Z'
                sentAsEmail: true
                sentAsEmailDate: '2026-03-30T12:00:00.0000000Z'
                creationDate: '2026-03-30T12:00:00.0000000Z'
      operationId: getV1NotificationByNotificationID
      x-operation-id-source: derived
    put:
      tags:
      - Notification
      summary: Updates a notification
      description: 'Request body: JSON object.'
      parameters:
      - name: notificationID
        in: path
        description: The ID of the notification to update.
        required: true
        style: simple
        schema:
          type: integer
          format: int64
          example: 1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Notification'
            example:
              key: 1
              notificationStatusID: 1
              message: Example value
              seenInApp: true
              seenDate: '2026-03-30T12:00:00.0000000Z'
              sentAsEmail: true
              sentAsEmailDate: '2026-03-30T12:00:00.0000000Z'
              creationDate: '2026-03-30T12:00:00.0000000Z'
        required: true
      responses:
        '200':
          description: Success. No response body.
      operationId: putV1NotificationByNotificationID
      x-operation-id-source: derived
    delete:
      tags:
      - Notification
      summary: Deletes a notification
      parameters:
      - name: notificationID
        in: path
        description: The ID of the notification to delete.
        required: true
        style: simple
        schema:
          type: integer
          format: int64
          example: 1
      responses:
        '200':
          description: Success. No response body.
      operationId: deleteV1NotificationByNotificationID
      x-operation-id-source: derived
  /v1/notification/list:
    get:
      tags:
      - Notification
      summary: Gets the notification list
      description: Supports optional query parameters `seeninapp`, `sentasemail`, and `sinceepoch`.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Notification'
                example:
                - key: 1
                  notificationStatusID: 1
                  userID: 101
                  message: Example value
                  seenInApp: true
                  seenDate: '2026-03-30T12:00:00.0000000Z'
                  sentAsEmail: true
                  sentAsEmailDate: '2026-03-30T12:00:00.0000000Z'
                  creationDate: '2026-03-30T12:00:00.0000000Z'
                  createdBy: 1
                  lastModifiedDate: '2026-03-30T12:00:00.0000000Z'
                  lastModifiedBy: 1
              example:
              - key: 1
                notificationStatusID: 1
                message: Example value
                seenInApp: true
                seenDate: '2026-03-30T12:00:00.0000000Z'
                sentAsEmail: true
                sentAsEmailDate: '2026-03-30T12:00:00.0000000Z'
                creationDate: '2026-03-30T12:00:00.0000000Z'
      operationId: getV1NotificationList
      x-operation-id-source: derived
  /v1/notification:
    post:
      tags:
      - Notification
      summary: Creates a notification
      description: 'Request body: JSON object.'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Notification'
            example:
              key: 1
              notificationStatusID: 1
              message: Example value
              seenInApp: true
              seenDate: '2026-03-30T12:00:00.0000000Z'
              sentAsEmail: true
              sentAsEmailDate: '2026-03-30T12:00:00.0000000Z'
              creationDate: '2026-03-30T12:00:00.0000000Z'
        required: true
      responses:
        '200':
          description: Success. No response body.
      operationId: postV1Notification
      x-operation-id-source: derived
components:
  schemas:
    Notification:
      type: object
      properties:
        key:
          type: integer
          format: int64
          example: 1
        notificationStatusID:
          type: integer
          format: int64
          example: 1
        message:
          type:
          - string
          - 'null'
          example: Example value
        seenInApp:
          type: boolean
          example: true
        seenDate:
          type:
          - string
          - 'null'
          format: date-time
          example: '2026-03-30T12:00:00.0000000Z'
        sentAsEmail:
          type: boolean
          example: true
        sentAsEmailDate:
          type:
          - string
          - 'null'
          format: date-time
          example: '2026-03-30T12:00:00.0000000Z'
        creationDate:
          type:
          - string
          - 'null'
          format: date-time
          example: '2026-03-30T12:00:00.0000000Z'
      additionalProperties: false
      example:
        key: 1
        notificationStatusID: 1
        message: Example value
        seenInApp: true
        seenDate: '2026-03-30T12:00:00.0000000Z'
        sentAsEmail: true
        sentAsEmailDate: '2026-03-30T12:00:00.0000000Z'
        creationDate: '2026-03-30T12:00:00.0000000Z'