Ualá Ualá Bis API Cobros Online V2 API

The Ualá Bis API Cobros Online V2 API from Ualá — 0 operation(s) for ualá bis api cobros online v2.

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/ual-ual-bis-api-cobros-online-v2-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

ual-ual-bis-api-cobros-online-v2-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ualá Bis API Cobros Online V2 API
  description: Ualá Bis online payments (checkout) API for Argentina. Creating an order returns a unique hosted checkout link where the buyer selects a payment method (credit card, debit card, and QR coming soon). Orders can be retrieved individually, listed with filters and cursor pagination, and refunded within 90 days. Status changes are pushed to a merchant-supplied notification_url via webhooks. Generated by API Evangelist from the published documentation at developers.ualabis.com.ar — the provider does not publish a machine-readable spec.
  version: '2'
  contact:
    email: developers.ualabis@uala.com.ar
    url: https://developers.ualabis.com.ar/
  x-apievangelist:
    provider: ual
    generated: '2026-07-21'
    method: generated
    source: https://developers.ualabis.com.ar/v2
servers:
- url: https://checkout.developers.ar.ua.la/v2/api
  description: Production
- url: https://checkout.stage.developers.ar.ua.la/v2/api
  description: Test (stage)
security:
- bearerAuth: []
tags:
- name: Ualá Bis API Cobros Online V2
paths: {}
webhooks:
  orderStatusNotification:
    post:
      operationId: orderStatusNotification
      summary: Webhook creación de orden — order status notification
      description: POSTed to the notification_url given when creating an order, on each status event (APPROVED, PROCESSED, REJECTED). Respond 200 to acknowledge; otherwise the notification is retried up to 3 more times (4 attempts total).
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrderNotification'
            example:
              uuid: 9d42ef50-a139-4606-bc21-43d5e2722876
              external_reference: sf2e0241-a139-4606-adb1-74a842641281
              status: APPROVED
              created_date: '2022-06-06T13:23:27Z'
              api_version: '2'
      responses:
        '200':
          description: Acknowledge receipt with HTTP 200.
      tags:
      - Ualá Bis API Cobros Online V2
  refundStatusNotification:
    post:
      operationId: refundStatusNotification
      summary: Webhook devolución — refund status notification
      description: POSTed to the notification_url given when creating a refund. Status is REFUNDED or NOT_REFUNDED. Respond 200 to acknowledge.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrderNotification'
      responses:
        '200':
          description: Acknowledge receipt with HTTP 200.
      tags:
      - Ualá Bis API Cobros Online V2
components:
  schemas:
    OrderNotification:
      type: object
      properties:
        uuid:
          type: string
          description: Unique order identifier.
        external_reference:
          type: string
          description: Merchant order reference.
        status:
          type: string
          description: Order or refund status (APPROVED/PROCESSED/REJECTED or REFUNDED/NOT_REFUNDED).
        created_date:
          type: string
          format: date-time
        api_version:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Access token obtained from POST https://auth.developers.ar.ua.la/v2/api/auth/token with username, client_id, client_secret_id and grant_type=client_credentials. Credentials are issued in the Ualá Bis welcome email and in the mobile/web apps, for both test and production environments.