Incentivio Wallet Controller API

The wallet-controller API from Incentivio — 3 operation(s) for wallet-controller.

Operations 6

GET /incentivio-wallet/clients/{clientid}/walletconfig #
PUT /incentivio-wallet/clients/{clientid}/walletconfig #
DELETE /incentivio-wallet/clients/{clientid}/walletconfig #
GET /incentivio-wallet/scan-to-pay/sales-summary #
GET /paymentinstruments #
POST /paymentinstruments #

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/incentivio-wallet-controller-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

incentivio-wallet-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Incentivio Wallet Controller API
  version: v0
  description: 'Operations tagged wallet-controller across 2 of this provider''s published API definitions: incentivio-admin-api-openapi.yml, incentivio-mobile-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://adminapi.incentivio.com/incentivio-admin-api
  description: Generated server url
- url: https://mobile.incentivio.com/incentivio-mobile-api
  description: Generated server url
tags:
- name: wallet-controller
paths:
  /incentivio-wallet/clients/{clientid}/walletconfig:
    get:
      tags:
      - wallet-controller
      operationId: getWalletConfig
      parameters:
      - name: clientid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/WalletConfigDTO'
    put:
      tags:
      - wallet-controller
      operationId: setWalletConfig
      parameters:
      - name: clientid
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PutWalletConfigRequestDTO'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/WalletConfigDTO'
    delete:
      tags:
      - wallet-controller
      operationId: deleteWalletConfig
      parameters:
      - name: clientid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
    servers:
    - url: https://adminapi.incentivio.com/incentivio-admin-api
      description: Generated server url
  /incentivio-wallet/scan-to-pay/sales-summary:
    get:
      tags:
      - wallet-controller
      operationId: getScanToPaySalesSummary
      parameters:
      - name: location
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
      - name: startdate
        in: query
        required: true
        schema:
          type: string
      - name: enddate
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ScanToPaySalesSummaryResponse'
    servers:
    - url: https://adminapi.incentivio.com/incentivio-admin-api
      description: Generated server url
  /paymentinstruments:
    get:
      tags:
      - wallet-controller
      operationId: listPaymentInstruments
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ListPaymentInstrumentsResponseDTO'
    post:
      tags:
      - wallet-controller
      operationId: addPaymentInstrument
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddPaymentInstrumentRequestDTO'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/AddPaymentInstrumentResponseDTO'
    servers:
    - url: https://mobile.incentivio.com/incentivio-mobile-api
      description: Generated server url
components:
  schemas:
    WalletConfigDTO:
      type: object
      properties:
        clientId:
          type: string
        tokenizeGatewayName:
          type: string
        walletGatewayName:
          type: string
    PutWalletConfigRequestDTO:
      type: object
      properties:
        tokenizeGatewayName:
          type: string
        walletGatewayName:
          type: string
    ScanToPaySalesSummaryResponse:
      type: object
      properties:
        salesSummary:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/ScanToPaySalesSummary'
    ScanToPaySalesSummary:
      type: object
      properties:
        id:
          type: string
        transactionCount:
          type: integer
          format: int32
        orderTotal:
          type: integer
          format: int64
        tipTotal:
          type: integer
          format: int64
        finalTotal:
          type: integer
          format: int64
    AddPaymentInstrumentResponseDTO:
      type: object
      properties:
        paymentInstrumentId:
          type: string
    AddPaymentInstrumentRequestDTO:
      type: object
      properties:
        clientId:
          type: string
        locationId:
          type: string
        userId:
          type: string
        paymentType:
          type: string
        paymentToken:
          type: string
        lastFour:
          type: string
        cardSecurityCode:
          type: string
        nickname:
          type: string
        zipCode:
          type: string
        isDefault:
          type: boolean
        tokenType:
          type: string
        sourceType:
          type: string
        expirationMonth:
          type: integer
          format: int32
        expirationYear:
          type: integer
          format: int32
        additionalAttributes:
          type: object
          additionalProperties:
            type: string
        default:
          type: boolean
    PaymentInstrumentDTO:
      type: object
      properties:
        paymentInstrumentId:
          type: string
        clientId:
          type: string
        userId:
          type: string
        paymentType:
          type: string
        cardType:
          type: string
        expirationYear:
          type: integer
          format: int32
        expirationMonth:
          type: integer
          format: int32
        paymentToken:
          type: string
        lastFour:
          type: string
        nickname:
          type: string
        image:
          type: string
        isDefault:
          type: boolean
        extendedAttributes:
          type: object
          additionalProperties:
            type: string
    ListPaymentInstrumentsResponseDTO:
      type: object
      properties:
        paymentInstruments:
          type: array
          items:
            $ref: '#/components/schemas/PaymentInstrumentDTO'
x-refined-from:
- incentivio-admin-api-openapi.yml
- incentivio-mobile-api-openapi.yml