Mavrck Cash Payments API

The CashPayments API from Mavrck — 2 operation(s) for cashpayments.

Operations 4

GET /v1/cash-payment-apps #
POST /v1/cash-payment-apps #
GET /v1/cash-payment-apps/{id} #
PATCH /v1/cash-payment-apps/{id} #

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/mavrck-cashpayments-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

mavrck-cashpayments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  description: Identify your most influential customers and activate them to drive more conversions on social.
  title: MAVRCK.IO Cash Payments API
servers:
- url: http://app.splashscore.com/v1
- url: https://app.splashscore.com/v1
security:
- apiKey: []
tags:
- name: CashPayments
paths:
  /v1/cash-payment-apps:
    get:
      operationId: getCashPaymentApps
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                properties:
                  data:
                    items:
                      $ref: '#/components/schemas/Partial_CashPaymentAppResponse_'
                    type: array
                required:
                - data
                type: object
        '400':
          description: Missing Parameter
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidateErrorJSON'
        '403':
          description: Access forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: The resource does not exist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
        '500':
          description: Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerError'
      tags:
      - CashPayments
      parameters:
      - in: query
        name: checkEnabledProvider
        required: false
        schema:
          type: boolean
          default: false
    post:
      operationId: createCashPaymentApp
      responses:
        '201':
          description: OK
        '400':
          description: Missing Parameter
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidateErrorJSON'
        '403':
          description: Access forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: The resource does not exist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
        '500':
          description: Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerError'
      tags:
      - CashPayments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCashPaymentAppBody'
        required: true
  /v1/cash-payment-apps/{id}:
    get:
      operationId: getCashPaymentApp
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                properties:
                  data:
                    $ref: '#/components/schemas/Partial_CashPaymentAppResponse_'
                required:
                - data
                type: object
        '400':
          description: Missing Parameter
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidateErrorJSON'
        '403':
          description: Access forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: The resource does not exist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
        '500':
          description: Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerError'
      tags:
      - CashPayments
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: number
          format: double
    patch:
      operationId: updateCashPaymentApp
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CashPaymentAppUpdateResponse'
        '400':
          description: Missing Parameter
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidateErrorJSON'
        '403':
          description: Access forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: The resource does not exist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
        '500':
          description: Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerError'
      tags:
      - CashPayments
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: number
          format: double
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CashPaymentAppUpdatePayload'
        required: true
components:
  schemas:
    ProviderEnvironment:
      enum:
      - LIVE
      - SANDBOX
      type: string
    DBCashPaymentAppProvider:
      enum:
      - PAYPAL
      - STRIPE
      - MAVELY
      - TIPALTI
      type: string
    NotFoundError:
      properties:
        message:
          type: string
          enum:
          - Resource Not Found
        details:
          properties: {}
          additionalProperties:
            additionalProperties: true
          type: object
      required:
      - message
      - details
      type: object
      additionalProperties: false
    CreateCashPaymentAppBody:
      properties:
        tipaltiPayerEntityId:
          type:
          - string
          - 'null'
          description: Passed through to Payment Service only; not stored in SAPI
        iframeMasterKey:
          type:
          - string
          - 'null'
          description: Passed through to Payment Service only; not stored in SAPI
        internalIdentifierCode:
          type:
          - string
          - 'null'
        s4AccountIdsToGiveAdminAccess:
          items:
            type: number
            format: double
          type: array
        secretKey:
          type: string
        provider:
          $ref: '#/components/schemas/DBCashPaymentAppProvider'
        identifier:
          type: string
        environment:
          $ref: '#/components/schemas/ProviderEnvironment'
        description:
          type: string
        additionalCommunityIds:
          items:
            type: string
          type: array
      required:
      - s4AccountIdsToGiveAdminAccess
      - secretKey
      - provider
      - identifier
      - environment
      - description
      - additionalCommunityIds
      type: object
    ValidateErrorJSON:
      properties:
        message:
          type: string
          enum:
          - Validation failed
        details:
          properties: {}
          additionalProperties:
            additionalProperties: true
          type: object
      required:
      - message
      - details
      type: object
      additionalProperties: false
    CashPaymentAppUpdatePayload:
      type: object
      properties: {}
    ForbiddenError:
      properties:
        message:
          type: string
          enum:
          - Access Forbidden
        details:
          properties: {}
          additionalProperties:
            additionalProperties: true
          type: object
      required:
      - message
      - details
      type: object
      additionalProperties: false
    CashPaymentAppUpdateResponse:
      type: object
      properties: {}
    Partial_CashPaymentAppResponse_:
      properties:
        id:
          type: number
          format: double
        provider:
          type: string
        identifier:
          type: string
        secretKey:
          type: string
        environment:
          type:
          - string
          - 'null'
        accessToken:
          type:
          - string
          - 'null'
        createdAt:
          type:
          - string
          - 'null'
          format: date-time
        updatedAt:
          type:
          - string
          - 'null'
          format: date-time
        internalIdentifierCode:
          type:
          - string
          - 'null'
        externalDescription:
          type:
          - string
          - 'null'
        includeFeesInTransactions:
          type: boolean
        paymentAccount:
          properties:
            cashPaymentApp:
              properties:
                includeFeesInTransactions:
                  type: boolean
                externalDescription:
                  type:
                  - string
                  - 'null'
                internalIdentifierCode:
                  type:
                  - string
                  - 'null'
                updatedAt:
                  type:
                  - string
                  - 'null'
                  format: date-time
                createdAt:
                  type:
                  - string
                  - 'null'
                  format: date-time
                accessToken:
                  type:
                  - string
                  - 'null'
                environment:
                  type:
                  - string
                  - 'null'
                secretKey:
                  type: string
                identifier:
                  type: string
                provider:
                  type: string
                id:
                  type: number
                  format: double
              required:
              - includeFeesInTransactions
              - externalDescription
              - internalIdentifierCode
              - updatedAt
              - createdAt
              - accessToken
              - environment
              - secretKey
              - identifier
              - provider
              - id
              type: object
            updatedAt:
              type: string
              format: date-time
            createdAt:
              type: string
              format: date-time
            cashPaymentAppId:
              type:
              - number
              - 'null'
              format: double
            accountType:
              type:
              - string
              - 'null'
            description:
              type: string
            balance:
              type: number
              format: double
            communityId:
              type: string
            id:
              type: number
              format: double
          required:
          - updatedAt
          - createdAt
          - cashPaymentAppId
          - accountType
          - description
          - balance
          - communityId
          - id
          type: object
      type: object
      description: Make all properties in T optional
    ServerError:
      properties:
        message:
          type: string
          enum:
          - Server Error
        details:
          properties: {}
          additionalProperties:
            additionalProperties: true
          type: object
      required:
      - message
      - details
      type: object
      additionalProperties: false
  securitySchemes:
    apiKey:
      type: apiKey
      name: api-key
      in: header