Picker paymentez API

The paymentez API from Picker — 7 operation(s) for paymentez.

Operations 7

GET /customer/list/card list of cards #
PUT /api/addCard Add card to user #
PUT /paymentez/add/card Add card in paymentez #
PUT /paymentez/card/default Delete card ustomer From paymentez #
PUT /paymentez/delete/card Delete card ustomer From paymentez #
POST /paymentez/webhookApi Webhook Api #
POST /paymentez/charge/card charge card in paymentez #

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/picker-paymentez-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

picker-paymentez-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Picker Production Documentation accounting Paymentez API
  version: V1.0.0
  contact:
    name: RV
    email: rachit.verma@nextjuggernaut.com
servers:
- url: http://api.pickerexpress.com/
tags:
- name: paymentez
paths:
  /customer/list/card:
    get:
      summary: list of cards
      operationId: getCustomerListCard
      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:
      - paymentez
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
  /api/addCard:
    put:
      summary: Add card to user
      operationId: putApiAddcard
      parameters:
      - description: en/es
        name: content-language
        in: header
        required: true
        schema:
          type: string
      tags:
      - paymentez
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Model_12'
  /paymentez/add/card:
    put:
      summary: Add card in paymentez
      operationId: putPaymentezAddCard
      parameters:
      - description: en/ar
        name: content-language
        in: header
        required: true
        schema:
          type: string
      - description: Bearer Token
        name: authorization
        in: header
        required: true
        schema:
          type: string
      tags:
      - paymentez
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Model_45'
  /paymentez/card/default:
    put:
      summary: Delete card ustomer From paymentez
      operationId: putPaymentezCardDefault
      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:
      - paymentez
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                cardToken:
                  type: string
              required:
              - cardToken
  /paymentez/delete/card:
    put:
      summary: Delete card ustomer From paymentez
      operationId: putPaymentezDeleteCard
      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:
      - paymentez
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                cardToken:
                  type: string
              required:
              - cardToken
  /paymentez/webhookApi:
    post:
      summary: Webhook Api
      operationId: postPaymentezWebhookapi
      tags:
      - paymentez
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
  /paymentez/charge/card:
    post:
      summary: charge card in paymentez
      operationId: postPaymentezChargeCard
      parameters:
      - description: en/ar
        name: content-language
        in: header
        required: true
        schema:
          type: string
      - description: Bearer Token
        name: authorization
        in: header
        required: true
        schema:
          type: string
      tags:
      - paymentez
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Model_80'
components:
  schemas:
    Model_80:
      type: object
      properties:
        order:
          $ref: '#/components/schemas/order'
        card:
          $ref: '#/components/schemas/Model_79'
    order:
      type: object
      description: It is an object having order details
      properties:
        amount:
          type: number
        description:
          type: string
        dev_reference:
          type: string
        vat:
          type: number
        bookingID:
          type: string
          description: Mongo Id of booking Model
      required:
      - bookingID
    card:
      type: object
      description: It is an object having card details
      properties:
        number:
          type: string
        holder_name:
          type: string
        expiry_month:
          type: number
        expiry_year:
          type: number
        cvc:
          type: string
        type:
          type: string
    Model_45:
      type: object
      properties:
        token:
          type: string
        transaction_reference:
          type: string
        isDefault:
          type: boolean
        platform:
          type: string
        cardType:
          type: string
        bin:
          type: string
        card:
          $ref: '#/components/schemas/card'
      required:
      - isDefault
    Model_79:
      type: object
      description: It is an object having card details
      properties:
        token:
          type: string
    Model_12:
      type: object
      properties:
        token:
          type: string
        isDefault:
          type: boolean
      required:
      - token
      - isDefault