Picker notification API
The notification API from Picker — 4 operation(s) for notification.
The notification API from Picker — 4 operation(s) for notification.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/picker-notification-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Picker Production Documentation accounting Notification API
version: V1.0.0
contact:
name: RV
email: rachit.verma@nextjuggernaut.com
servers:
- url: http://api.pickerexpress.com/
tags:
- name: notification
paths:
/notification/getAllNotification:
get:
summary: Get All Notification Of Admin
operationId: getNotificationGetallnotification
parameters:
- description: Bearer Token
name: authorization
in: header
required: true
schema:
type: string
- description: en/ar
name: content-language
in: header
required: true
schema:
type: string
- description: Required only if markAllAsRead is true
name: isAdminNotification
in: query
required: false
schema:
type: boolean
- name: limit
in: query
required: false
schema:
type: integer
- name: skip
in: query
required: false
schema:
type: integer
tags:
- notification
responses:
default:
description: Successful
content:
application/json:
schema:
type: string
/notification/clearNotification:
put:
summary: Clear Admin Notification
operationId: putNotificationClearnotification
parameters:
- description: Bearer Token
name: authorization
in: header
required: true
schema:
type: string
- description: en/ar
name: content-language
in: header
required: true
schema:
type: string
tags:
- notification
responses:
default:
description: Successful
content:
application/json:
schema:
type: string
requestBody:
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
isAdminNotification:
type: boolean
description: True if notifications are for admin
/notification/readNotification:
put:
summary: Read Admin Notification
operationId: putNotificationReadnotification
parameters:
- description: Bearer Token
name: authorization
in: header
required: true
schema:
type: string
- description: en/ar
name: content-language
in: header
required: true
schema:
type: string
tags:
- notification
responses:
default:
description: Successful
content:
application/json:
schema:
type: string
requestBody:
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
notificationID:
type: array
items:
type: string
description: Array of notification IDs
markAllAsRead:
type: boolean
default: false
isAdminNotification:
type: boolean
description: Required only if markAllAsRead is true
required:
- markAllAsRead
/notification/receivedNotification:
put:
summary: Mark booking notification as received
operationId: putNotificationReceivednotification
parameters:
- description: Bearer Token
name: authorization
in: header
required: true
schema:
type: string
- description: en/ar
name: content-language
in: header
required: true
schema:
type: string
tags:
- notification
responses:
default:
description: Successful
content:
application/json:
schema:
type: string
requestBody:
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
bookingID:
type: string
maxLength: 24
minLength: 24
required:
- bookingID