> ## Documentation Index
> Fetch the complete documentation index at: https://docs.platform.arb.inc/llms.txt
> Use this file to discover all available pages before exploring further.

# Send test notification to verify subscription

> Sends a test push notification to verify that a subscription is working correctly. This is useful for testing after registration to ensure the browser can receive notifications.



## OpenAPI

````yaml api-reference/push.yaml post /web-push/verify
openapi: 3.0.3
info:
  title: push
  description: >-
    The Push service keeps track of which user browsers have signed up to
    receive notifications and how to reach them using VAPID. Other services tell
    it when a notification should be sent, and it delivers that message directly
    to the user's browser.
  version: 1.0.0
servers:
  - url: https://push.platform.arb.inc
security: []
tags:
  - name: /
  - name: demo
  - name: internal
  - name: vapid-keys
  - name: web-push
paths:
  /web-push/verify:
    post:
      tags:
        - web-push
      summary: Send test notification to verify subscription
      description: >-
        Sends a test push notification to verify that a subscription is working
        correctly. This is useful for testing after registration to ensure the
        browser can receive notifications.
      operationId: verifyWebPushSubscription
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - subscriptionID
              properties:
                subscriptionID:
                  type: string
                  description: Unique identifier for the subscription to test
                  example: 3f8c7e4d-2a1b-4c9d-8e7f-6a5b4c3d2e1f
      responses:
        '200':
          description: Test notification sent successfully
          content:
            text/plain:
              schema:
                type: string
                example: test notification sent

````