vivenu refunds API

The refunds API from vivenu — 2 operation(s) for refunds.

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/vivenu-refunds-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

vivenu-refunds-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: vivenu access-lists refunds API
  description: vivenu API Documentation
  version: 1.0.0
  contact:
    name: vivenu GmbH
    url: https://vivenu.com
servers:
- url: https://vivenu.com
  description: Production API
- url: https://vivenu.dev
  description: Staging API
tags:
- name: refunds
paths:
  /api/payments/refunds:
    get:
      security:
      - jwt: []
      - apikey: []
      parameters:
      - name: skip
        required: false
        schema:
          type: number
          format: float
          description: The number of objects to skip for the requested result
          metas: {}
        in: query
        style: form
        explode: true
      - name: top
        required: false
        schema:
          type: number
          format: float
          description: A limit on the number of objects to be returned. Can range between 1 and 1000.
          default: 25
          metas: {}
        in: query
        style: form
        explode: true
      - name: gateway
        required: false
        schema:
          type: string
          description: The payment gateway type to filter for
          metas: {}
        in: query
        style: form
        explode: true
      - name: gatewayId
        required: false
        schema:
          type: string
          description: The payment gateway id to filter for
          metas: {}
        in: query
        style: form
        explode: true
      - name: createdAt
        required: false
        schema:
          type: object
          properties:
            $gt:
              type: string
              format: date-time
              description: value is greater than
              metas: {}
            $gte:
              type: string
              format: date-time
              description: value is greater than or equal
              metas: {}
            $lt:
              type: string
              format: date-time
              description: value is less than
              metas: {}
            $lte:
              type: string
              format: date-time
              description: value is less than or equal
              metas: {}
            $eq:
              type: string
              format: date-time
              description: value is equal
              metas: {}
            $ne:
              type: string
              format: date-time
              description: value is not equal
              metas: {}
          description: Range of dates to filter by when the refund was created in ISO format.
          metas: {}
        in: query
        style: deepObject
        explode: true
      - name: target
        required: false
        schema:
          type: string
          enum:
          - origin
          - voucher
          metas: {}
        in: query
        style: form
        explode: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GET_Refunds_GetAllRefunds_200_response'
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
      tags:
      - refunds
      description: Get all refunds
      operationId: get_all_refunds
  /api/payments/refunds/{id}:
    get:
      security:
      - jwt: []
      - apikey: []
      parameters:
      - name: id
        required: true
        schema:
          type: string
          metas: {}
        in: path
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RefundResource'
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
      tags:
      - refunds
      description: Get a refund
      operationId: get_a_refund
components:
  schemas:
    GET_Refunds_GetAllRefunds_200_response:
      type: object
      properties:
        docs:
          type: array
          items:
            $ref: '#/components/schemas/RefundResource'
        total:
          type: integer
    RefundResource:
      type: object
      properties:
        _id:
          type: string
          description: The ID of the refund
        transactionId:
          type: string
          description: The ID of the transaction which the refund belongs to
        eventId:
          type: string
          description: The ID of the event which the refund belongs to
        sellerId:
          type: string
          description: The ID of the seller which the refund belongs to
        pspRef:
          type: string
          description: The ID of the payment service provider reference object
        gateway:
          type: string
          enum:
          - managed
          - external
          - local
          description: The gateway payment type of the refund
          default: managed
        amount:
          type: number
          format: float
          description: The amount of the refund
        currency:
          type: string
          enum:
          - EUR
          - USD
          - GBP
          - AUD
          - CHF
          - THB
          - ILS
          - COP
          - MXN
          - DKK
          - NOK
          - SEK
          - QAR
          - CAD
          - ISK
          - GTQ
          - INR
          - DOP
          - SGD
          - PLN
          - SAR
          - TTD
          - ZAR
          - KYD
          - HKD
          - CZK
          - KRW
          - JPY
          - NZD
          - AED
          - MAD
          - TWD
          - BRL
          - BWP
          - NAD
          - KES
          - SCR
          - TRY
          - SZL
          - LSL
          - TZS
          - UGX
          - ZMW
          - ZWG
          - GHS
          - NGN
          - SLE
          - LRD
          - XOF
          - XAF
          - GEL
          - IDR
          - ARS
          - CRC
          - HUF
          - EGP
          - MYR
          - VND
          - PHP
          description: An ISO 4217 3-character code of the currency
          default: EUR
        createdAt:
          type: string
          format: date-time
          description: An ISO Timestamp indicating when the refund was created.
        updatedAt:
          type: string
          format: date-time
          description: An ISO Timestamp indicating when the refund was updated.
      required:
      - _id
      - createdAt
      - updatedAt
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT
    apikey:
      type: apiKey
      scheme: bearer
      in: header
      name: Authorization
    customer-jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT
    orgApiKey:
      type: apiKey
      scheme: bearer
      in: header
      name: Authorization