---
title: "Create Payment"
method: POST
path: "/payments"
---

# Create Payment

`POST /payments`

## Headers

- `X-Idempotency-Key` string, required

## Request body

- object
  - `account_id` string, required — The unique identifier of the account. You find this information on [the Yuno dashboard](https://dashboard.y.uno/) (UUID, 36 chars).
  - `merchant_order_id` string, required — The unique identifier of the customer's order (MAX 255; MIN 3).
  - `description` string, required — The description of the payment (MAX 255; MIN 3).
  - `amount` object, required — Specifies the payment amount object, with the value and currency.
    - `currency` string, required — The currency used to make the payment. For a full list of currency codes, see [Country reference](/reference/country-reference) (MAX 3; MIN 3; ISO 4217).
    - `value` number, float, required — The payment amount (multiple of 0.0001).
    - `currency_conversion` object — The currency conversion (DCC) object. Used when the cardholder pays in their home currency at the point of sale while the merchant settles in their own. `cardholder_currency` must differ from `amount.currency`.
      - `id` string — The unique identifier of the [conversion rate query](/docs/currency-conversion) from Yuno. (UUID, 36 chars)
      - `provider_currency_conversion_id` string — The unique identifier of the conversion rate query from the provider (MAX 526 ; MIN 3)
      - `cardholder_currency` string — Currency the cardholder is charged in. ISO 4217 alpha-3 code. Must differ from `amount.currency`. This field is required if the 'currency_conversion' object is included in the request.
      - `cardholder_amount` number, float — Total amount billed to the cardholder in `cardholder_currency` (multiple of 0.0001). Range: 0.0001 – 9,999,999,999. This field is required if the 'currency_conversion' object is included in the request.
      - `cardholder_accepted` boolean — Cardholder's explicit consent to the DCC offer. `true` = accepted (charge in `cardholder_currency`); `false` = declined (payment proceeds in merchant currency).
      - `provider_data` object — Additional data from the provider
        - `id` 'CIBC' | 'MERCADO_PAGO' — Identification of the provider
      - `rate` number, float — Applied FX rate (markup included). Must be greater than 0.
      - `rate_margin_percentage` number, float — Markup added over the wholesale rate, expressed as a percentage. Range: 0 – 100.
      - `rate_source` string — Wholesale benchmark used for the quote. Required when `rate_margin_percentage > 0`. Free text, max 50 chars. Examples: `ECB`, `REUTERS`, `BLOOMBERG`, `PROVIDER_INTERNAL`.
      - `provider` 'FEXCO' | 'GLOBAL_BLUE' | 'PLANET' | 'EURONET' | 'CURRENCYFAIR' | 'EUROPEAN_PAYMENT_SERVICES' | 'OTHER' — DCC provider that issued the quote.
      - `description` string — Verbatim disclosure text shown to the cardholder at the point of sale. Stored unchanged for audit. Max 4096 chars.
      - `created_at` string, date-time — Timestamp when the DCC provider issued the quote (ISO 8601). Must be ≤ now().
      - `expires_at` string, date-time — Timestamp when the quote expires (ISO 8601). Must be > `created_at`. The payment is rejected if `expires_at < now()` at validation time.
  - `checkout` object, required — Specifies the checkout object. This object is not mandatory for back to back payments. Required when `workflow` is defined as `SDK_CHECKOUT` or is not sent. not required for `DIRECT` or `REDIRECT` payments.
    - `session` string — The checkout session that has been created for the payment using the [Create Checkout Session](https://docs.y.uno/reference/create-checkout-session) endpoint (UUID, 36 chars). This field is required if the `checkout` object is included in the request.
  - `additional_data` object — Specifies the additional_data object. This object is not mandatory. However, if you send this information, the payment experience will be enhanced for your user.
    - `order` object — Specifies the order object.
      - `shipping_amount` number, float — The shipping amount of the order (multiple of 0.0001). This field is for informational purposes, the shipping amount is already included in the final transaction amount and is not added separately.
      - `fee_amount` number, float — The fee amount of the order (multiple of 0.0001). This field is for informational purposes, the fee amount is already included in the final transaction amount and is not added separately.
      - `tip_amount` string — The tip amount of the order (multiple of 0.0001). This field is for informational purposes, the tip amount is already included in the final transaction amount and is not added separately.
      - `taxes` object[] — The taxes of the order. This struct is for informational purposes, the taxes amount is already included in the final transaction amount and is not added separately.
        - `type` 'VAT' | 'AIRPORT_TAX' | 'CONSUMPTION_TAX' | 'VAT_LAW_17934' | 'VAT_LAW_19210' | 'VAT_EXEMPTION' | 'ISV', required — Type of the tax.
        - `tax_base` number, float — The amount base to apply the tax defined.
        - `value` number, float, required — The amount of the tax.
        - `percentage` number, float — The percentage of the tax.
      - `items` object[] — Specifies the items array of object.
        - `id` string, required — The unique identifier of the item (MAX 255; MIN 3).
        - `name` string, required — The name of the item (MAX 255; MIN 3).
        - `quantity` integer, required — The quantity of the item.
        - `unit_amount` number, float, required — The unit amount of the item (multiple of 0.0001).
        - `category` 'art' | 'baby' | 'coupons' | 'beauty_&_personal_care' | 'donations' | 'computing' | 'books' | 'grocery_&_gourmet_food' | 'cameras' | 'video_games' | 'television' | 'car_electronics' | 'electronics' | 'automotive' | 'toys_&_games' | 'musical_instruments' | 'handmade' | 'garden_&_outdoor' | 'entertainment' | 'industrial_&_scientific' | 'fashion' | 'games' | 'pet_supplies' | 'home' | 'musical' | 'phones' | 'services' | 'learnings' | 'tickets' | 'travels' | 'virtual_goods' | 'others' | '', required — The category of the item. Check the [Item category reference](/reference/items-category-list).
        - `brand` string — The brand of the item (MAX 255; MIN 3).
        - `sku_code` string — The stock keeping unit (SKU) of the item (MAX 255; MIN 3).
        - `manufacture_part_number` string — The manufacture part number of the item.
        - `url` string — The item's URL available to the buyer (MAX 512; MIN 3).
        - `image_url` string — URL of the product image. Complements the existing url field, which points to the product page (MAX 512; MIN 3).
      - `shipping` object — The shipping details object
        - `type` 'CUSTOM' | 'MILITARY' | 'ELECTRONIC' | 'EXPRESS' | 'STANDARD' | 'SCHEDULED' | 'ECONOMY' | 'PRIORITY' | 'SAME_DAY' | 'NEXT_DAY' | 'THIRD_DAY' | 'STORE_PICK_UP' | 'LOCKER_PICK_UP' | 'OTHER' — The type of shippment
        - `description` string — The shipment description
        - `carrier` 'UPS' | 'USPS' | 'FEDEX' | 'DHL' | 'PUROLATOR' | 'GREYHOUND' | 'AR_CORREO_ARGENTINO' | 'AR_OCA' | 'OTHER' — Carrier used for the delivery
        - `deliver_at` string — Estimated date of delivery (ISO 8601 MAX 27; MIN 27)
      - `tickets` object[] — The tickets detail object
        - `id` string — Id of the ticket (Min: 1, max:255)
        - `name` string — Name of the ticket (Min: 1, max:255)
        - `description` string — Description of the ticket (Min: 1, max:255)
        - `type` 'VIRTUAL' | 'PHYSICAL' — Type of the ticket
        - `amount` object — Amount of the ticket
          - `value` number, float — Amount of the payment
          - `currency` string — The currency used to make the payment (ISO 4217 MAX 3; MIN 3)
        - `event` object — The event information
          - `id` string — Id of the event related to the ticket
          - `name` string — Name of the event
          - `description` string — Description of the event
          - `type` 'PARTY' | 'UNIVERCITY' | 'FESTIVAL' | 'CIRCUS' | 'SPORTS' | 'CINEMA' | 'THEATER' | 'CONCERT' | 'OTHERS' — Type of the event
          - `date` string, date — Date of the event
          - `address` object — Address of the event
            - `address_line_1` string — The primary billing address line (MAX 255; MIN 3)
            - `address_line_2` string — The secondary billing address line (MAX 255; MIN 3)
            - `building_number_1` string — The primary building number of the customer (MAX 255; MIN 3)
            - `building_number_2` string — The secondary building number of the customer (MAX 255; MIN 3)
            - `city` string — The city considered for the address (MAX 255; MIN 3)
            - `country` string — The country consider for the address (ISO 3166-1 MAX 2; MIN 2)
            - `state` string — The state / province considered for the address (MAX 255; MIN 3)
            - `zip_code` string — The zipcode considered for the address (MAX 11; MIN 4)
            - `neighborhood` string — The neighborhood address line (MAX 255; MIN 3)
      - `account_funding` object — The account funding transaction details object necessary for [AFTs](/docs/account-funding-transactions-afts).
        - `sender` object — The sender object necessary for account funding transactions
          - `first_name` string, required — Sender's name. (Max: 80)
          - `last_name` string — Sender's last name. (Max: 80)
          - `national_entity` 'INDIVIDUAL' | 'ENTITY' — Sender's national entity type.
          - `legal_name` string — Sender's name. (Max: 80) Only necessary when national entity is ENTITY
          - `email` string — The Sender's email (MAX 255; MIN 3)
          - `country` string, required — The Sender's country (ISO 3166-1 MAX 2; MIN 2)
          - `date_of_birth` string — The beneficiary's date of birth in the YYYY-MM-DD (MAX 10; MIN 10)
          - `document` object — Sender's document object
            - `document_number` string — Document number for customer (MAX 40; MIN 3). This field is required if the 'document' object is included in the request.
            - `document_type` 'DNI' | 'CI' | 'LC' | 'LE' | 'CUIT' | 'CUIL' | 'PAS' | 'CPF' | 'RG' | 'CNH' | 'CNPJ' | 'RUT' | 'RUN' | 'CC' | 'CE' | 'NIT' | 'DUI' | 'PIC' | 'DPI' | 'IFR' | 'INE' | 'CP' | 'RFC' | 'CURP' | 'CIP' | 'CIC' | 'CUI' | 'RUC' | '' — The customer's document type (MAX 6, MIN 2; [Country reference](/reference/country-reference)).
          - `phone` object — Sender's phone object
            - `country_code` string — The country calling code of the customer's phone (MAX 3; MIN 1). Check the [Country reference](country-reference) to see the phone codes. This field is required if the 'phone' object is included in the request.
            - `number` string — The customer's phone number, without the country code (MAX 32; MIN 1). This field is required if the 'phone' object is included in the request.
          - `address` object — Sender's address object
            - `address_line_1` string — The primary billing address line of the customer (MAX 255; MIN 1). This field is required if the 'billing_address' object is included in the request.
            - `address_line_2` string — The secondary billing address line of the customer (MAX 255; MIN 1).
            - `building_number_1` string — The primary building number of the customer (MAX 255; MIN 3)
            - `building_number_2` string — The secondary building number of the customer (MAX 255; MIN 3)
            - `city` string — The city considered for the billing address (MAX 255; MIN 1). This field is required if the 'billing_address' object is included in the request.
            - `country` 'AR' | 'BO' | 'BR' | 'CL' | 'CO' | 'CR' | 'EC' | 'SV' | 'GT' | 'HN' | 'MX' | 'NI' | 'PA' | 'PY' | 'PE' | 'US' | 'UY' | '' — The country considered for the billing address (MAX 2; MIN 2; [ISO 3166-1](country-reference)). This field is required if the 'billing_address' object is included in the request.
            - `state` string — State or province code. Use ISO 3166-2 subdivision codes (https://en.wikipedia.org/wiki/ISO_3166-2).
            - `zip_code` string — The zipcode considered for the billing address (MAX 11; MIN 3).
            - `neighborhood` string — The neighborhood of the address line of the customer(MAX 255; MIN 1)
        - `beneficiary` object — The beneficiary object necessary for account funding transactions.
          - `first_name` string, required — Beneficiary's name. (Max: 80)
          - `last_name` string — Beneficiary's last name. (Max: 80)
          - `national_entity` 'INDIVIDUAL' | 'ENTITY' — Beneficiary's national entity type.
          - `legal_name` string — Beneficiary's name. (Max: 80) Only necessary when national entity is ENTITY
          - `email` string — The Beneficiary's email (MAX 255; MIN 3)
          - `country` string, required — The Beneficiary's country (ISO 3166-1 MAX 2; MIN 2)
          - `date_of_birth` string — The beneficiary's date of birth in the YYYY-MM-DD (MAX 10; MIN 10)
          - `document` object — The beneficiary's document object.
            - `document_number` string — Document number for customer (MAX 40; MIN 3). This field is required if the 'document' object is included in the request.
            - `document_type` 'DNI' | 'CI' | 'LC' | 'LE' | 'CUIT' | 'CUIL' | 'PAS' | 'CPF' | 'RG' | 'CNH' | 'CNPJ' | 'RUT' | 'RUN' | 'CC' | 'CE' | 'NIT' | 'DUI' | 'PIC' | 'DPI' | 'IFR' | 'INE' | 'CP' | 'RFC' | 'CURP' | 'CIP' | 'CIC' | 'CUI' | 'RUC' | '' — The customer's document type (MAX 6, MIN 2; [Country reference](/reference/country-reference)).
          - `phone` object — The beneficiary's phone object.
            - `country_code` string — The country calling code of the customer's phone (MAX 3; MIN 1). Check the [Country reference](country-reference) to see the phone codes. This field is required if the 'phone' object is included in the request.
            - `number` string — The customer's phone number, without the country code (MAX 32; MIN 1). This field is required if the 'phone' object is included in the request.
          - `address` object — The beneficiary's address object.
            - `address_line_1` string — The primary billing address line of the customer (MAX 255; MIN 1). This field is required if the 'billing_address' object is included in the request.
            - `address_line_2` string — The secondary billing address line of the customer (MAX 255; MIN 1).
            - `building_number_1` string — The primary building number of the customer (MAX 255; MIN 3)
            - `building_number_2` string — The secondary building number of the customer (MAX 255; MIN 3)
            - `city` string — The city considered for the billing address (MAX 255; MIN 1). This field is required if the 'billing_address' object is included in the request.
            - `country` 'AR' | 'BO' | 'BR' | 'CL' | 'CO' | 'CR' | 'EC' | 'SV' | 'GT' | 'HN' | 'MX' | 'NI' | 'PA' | 'PY' | 'PE' | 'US' | 'UY' | '' — The country considered for the billing address (MAX 2; MIN 2; [ISO 3166-1](country-reference)). This field is required if the 'billing_address' object is included in the request.
            - `state` string — State or province code. Use ISO 3166-2 subdivision codes (https://en.wikipedia.org/wiki/ISO_3166-2).
            - `zip_code` string — The zipcode considered for the billing address (MAX 11; MIN 3).
            - `neighborhood` string — The neighborhood of the address line of the customer(MAX 255; MIN 1)
      - `discounts` object[] — Specifies the discounts array of objects.
        - `id` string — ID of the discount (MAX 255; MIN 1).
        - `name` string — Name of the discount (MAX 255; MIN 1).
        - `unit_amount` number, float, required — The unit amount of the discount (multiple of 0.0001).
      - `sales_channel` string — Sales channel id of the payment. (MIN:3 y MAX:255)
    - `airline` object — Specifies the airline object.
      - `pnr` string, required — Passenger name record (MAX 10; MIN 1).
      - `type` 'ONE_WAY' | 'ROUNDTRIP' | 'MULTIPLE_DESTINATIONS' — Type of trip.
      - `legs` object[] — Specifies the legs object.
        - `passenger_id` string — Reference to passenger ID (MAX 128; MIN 1).
        - `departure_airport` string, required — IATA code. See http://www.iata.org (MAX 3; MIN 3).
        - `departure_datetime` string, date-time, required — The departure date and time in UTC time ([ISO 8601](https://en.wikipedia.org/wiki/ISO_8601), MAX 27; MIN 27).
        - `departure_airport_country` string — Country of the departure airport (MAX 2; MIN 2; ISO 3166-1).
        - `departure_airport_city` string — The city considered for the departure airport (MAX 255; MIN 3).
        - `departure_airport_timezone` string, required — Airport timezone (MAX 6; MIN 6).
        - `arrival_airport` string, required — IATA airport code. See http://www.iata.org (MAX 3; MIN 3).
        - `arrival_airport_country` string — Country of the arrival airport (MAX 2; MIN 2; ISO 3166-1).
        - `arrival_airport_city` string — The city considered for the arrival airport (MAX 255; MIN 3).
        - `arrival_airport_timezone` string — Airport timezone (MAX 6; MIN 6).
        - `arrival_datetime` string — The arrival date and time in UTC time ([ISO 8601](https://en.wikipedia.org/wiki/ISO_8601), MAX 27; MIN 27).
        - `carrier_code` string, required — IATA carrier code. See http://www.iata.org (MAX 2; MIN 2).
        - `flight_number` string, required — The flight number assigned by the airline carrier (MAX 5; MIN 1).
        - `fare_basis_code` string, required — Code base rate provides specific information on the fare in addition to the class service, both required for booking (MAX 15; MIN 1).
        - `fare_class_code` string, required — The fare class code of the airline (MAX 1; MIN 1). The values can be a letter (A-Z) but may vary depending on the airline's definition. Check the [Airline information reference](/reference/airline-information#fare-class-code).
        - `base_fare` number, float — The transaction amount, excluding taxes and fees, the smallest unit of currency (multipleOf 0.0001).
        - `base_fare_currency` string — The currency used to transaction amount (MAX 3; MIN 3).
        - `stopover_code` string — 1-letter code indicating whether the passenger is allowed to make a stopover. Only two types of characters are allowed: O: Stopover allowed (the letter 'O', not zero) / X: Stopover not allowed. (MAX 1; MIN 1).
        - `order` integer — A running index (starts with 1), describing the order of legs in the same route.
        - `route_order` integer — A running index (starts with 1), describing the order of routes by time. E.g: If an order contains 2 Routes: New-York->London->Paris (connection in London) New-York->London should have route_order=1, order=1; London->Paris should have route_order=1, order=2; Paris->London->New-York: Paris->London should have route_order=2, order=1; London->New-York should have route_order=2, order=2.
      - `passengers` object[] — Specifies the passengers array of objects.
        - `id` string — Passenger ID for identification (MAX 128; MIN 1).
        - `first_name` string — The passenger first name (MAX 255; MIN 3).
        - `last_name` string — The passenger last name (MAX 255; MIN 3).
        - `middle_name` string — The passenger middle name (MAX 255; MIN 3).
        - `email` string — The passenger email (MAX 255; MIN 3).
        - `type` 'A' | 'C' | 'I' | '' — The passenger type (MAX 1; MIN 1). Check the [Airline information reference](/reference/airline-information#passenger-type).
        - `date_of_birth` string, date — The passenger date of birth in the YYYY-MM-DD (MAX 10; MIN 10).
        - `nationality` 'AR' | 'BO' | 'BR' | 'CL' | 'CO' | 'CR' | 'EC' | 'SV' | 'GT' | 'HN' | 'MX' | 'NI' | 'PA' | 'PY' | 'PE' | 'US' | 'UY' | '' — The passenger nationality (MAX 2; MIN 2; [ISO 3166-1](country-reference)).
        - `document` object — Specifies the document object of the passenger.
          - `document_number` string — Document number for passenger (MAX 40; MIN 3).
          - `document_type` 'DNI' | 'CI' | 'LC' | 'LE' | 'CUIT' | 'CUIL' | 'PAS' | 'CPF' | 'RG' | 'CNH' | 'CNPJ' | 'RUT' | 'RUN' | 'CC' | 'CE' | 'NIT' | 'DUI' | 'PIC' | 'DPI' | 'IFR' | 'INE' | 'CP' | 'RFC' | 'CURP' | 'CIP' | 'CIC' | 'CUI' | 'RUC' | '' — The passenger's document type (MAX 6, MIN 2; [Country reference](/reference/country-reference)).
        - `loyalty_number` string — Number of passenger loyalty program.
        - `loyalty_tier` '1' | '2' | '3' — Tier of passenger loyalty program. Check the [Airline information reference](/reference/airline-information#loyalty-tier).
        - `phone` object — Specifies the phone object for the passenger.
          - `country_code` string — The country calling code of the passenger's phone (MAX 3; MIN 1). Possible values: Check the [Country reference](/reference/country-reference).
          - `number` string — The passenger's phone number, without the country code (MAX 32; MIN 1).
      - `tickets` object[] — Specifies the array of ticket objects.
        - `passenger_id` string — Reference to passenger ID (MAX 128; MIN 1).
        - `ticket_number` string — Ticket number (MAX 14; MIN 1).
        - `e_ticket` boolean — Is this an e-ticket?
        - `restricted` boolean — Indicates if the ticket is refunfable or not.
        - `total_fare_amount` number, float — Total fare amount in the smallest unit of currency (multiple of 0.0001).
        - `total_tax_amount` number, float — Total taxes amount in the smallest unit of currency (multiple of 0.0001).
        - `total_fee_amount` number, float — Total fee amount in the smallest unit of currency (multiple of 0.0001).
        - `issue` object — Specifies the issue object.
          - `carrier_prefix_code` string — Issuing or Validating carrier. This is the AWB Prefix (Air waybill) 3-numeric code (MAX 3; MIN 3).
          - `travel_agent_code` string — Code of the travel agent issuing the ticket (MAX 9; MIN 8).
          - `travel_agent_name` string — The name under which the point of sale appears on the agency list or franchise name (MAX 32; MIN 1).
          - `booking_system_code` string — Code of the booking system issuing the ticket. (MAX 255; MIN 1).
          - `booking_system_name` string — Name of the booking system issuing the ticket. (MAX 255; MIN 1).
          - `date` string, date-time — Ticket issuing date (MAX 27; MIN 27).
          - `address` string — Address of the agent whose sold the ticket (MAX 255; MIN 3).
          - `city` string — City name of the agent whose sold the ticket (MAX 255; MIN 3).
          - `country` 'AR' | 'BO' | 'BR' | 'CL' | 'CO' | 'CR' | 'EC' | 'SV' | 'GT' | 'HN' | 'MX' | 'NI' | 'PA' | 'PY' | 'PE' | 'US' | 'UY' | '' — Country code alpha 2 where the ticket was issued (MAX 2; MIN 2; [ISO 3166-1](country-reference)).
    - `transportations` object[] — Specifies the transportations array of objects.
      - `id` string — The id of the transportation booking (MAX 255; MIN 1).
      - `description` string — The description of the transportation booking (MAX 255; MIN 1).
      - `type` 'ONE_WAY' | 'ROUNDTRIP' | 'MULTIPLE_DESTINATIONS' — The type of transportation booking.
      - `legs` object[] — Specifies the legs array of objects.
        - `passenger_id` string — Reference to passenger ID (MAX 128; MIN 1).
        - `order` integer — A running index (starts with 1), describing the order of legs in the same route.
        - `route_order` integer — A running index (starts with 1), describing the order of routes by time.
        - `departure_country` string — Country of the departure (MAX 2; MIN 2; ISO 3166-1).
        - `departure_city` string — The city of the departure (MAX 255; MIN 1).
        - `departure_timezone` string — Departure timezone (MAX 6; MIN 6).
        - `departure_datetime` string, date-time — The departure date and time in local time at the departure.
        - `departure_reference` string — The reference of the departure (MAX 255; MIN 1).
        - `arrival_country` string — Country of the arrival (MAX 2; MIN 2; ISO 3166-1).
        - `arrival_city` string — The city of the arrival (MAX 255; MIN 1).
        - `arrival_timezone` string — Arrival timezone (MAX 6; MIN 6).
        - `arrival_datetime` string, date-time — The arrival date and time in local time at the arrival.
        - `arrival_reference` string — The reference of the arrival (MAX 255; MIN 1).
        - `transport` object — Specifies the transport object.
          - `id` string — The id of the transportation vehicle (MAX 255; MIN 1).
      - `transport` object — Specifies the transport object.
        - `id` string — The id of the transportation vehicle (MAX 255; MIN 1).
        - `type` 'SHIP' | 'BUS' | 'TRAIN' | 'TRAM' | 'CAR' — The type of transportation vehicle.
        - `description` string — The description of the transportation vehicle (MAX 255; MIN 1).
      - `passengers` object[] — Specifies the passengers array of objects.
        - `id` string — Passenger ID for identification (MAX 128; MIN 1).
        - `first_name` string — The passenger first name (MAX 255; MIN 3).
        - `last_name` string — The passenger last name (MAX 255; MIN 3).
        - `middle_name` string — The passenger middle name (MAX 255; MIN 3).
        - `email` string — The passenger email (MAX 255; MIN 3).
        - `type` string — The passenger type (MAX 1; MIN 1). Check the Airline information reference.
        - `date_of_birth` string — The passenger date of birth in the YYYY-MM-DD (MAX 10; MIN 10).
        - `nationality` string — The passenger nationality (MAX 2; MIN 2; ISO 3166-1).
        - `document` object — Specifies the document object of the passenger.
          - `document_number` string — Document number for passenger (MAX 40; MIN 3).
          - `document_type` string — The passenger's document type (MAX 6, MIN 2; [Document Type List](https://docs.y.uno/reference/country-reference)).
        - `loyalty_number` string — Number of passenger loyalty program.
        - `loyalty_tier` string — Tier of passenger loyalty program. Check the Airline information reference.
        - `phone` object — Specifies the phone object for the passenger.
          - `country_code` string — The country calling code of the passenger's phone (MAX 3; MIN 1).
          - `number` string — The passenger's phone number, without the country code (MAX 32; MIN 1).
      - `tickets` object[] — Specifies the array of ticket objects.
        - `passenger_id` string — Reference to passenger ID (MAX 128; MIN 1).
        - `ticket_number` string — Ticket number (MAX 14; MIN 1).
        - `e_ticket` boolean — Is this an e-ticket?
        - `restricted` boolean — Indicates if the ticket is refundable or not.
        - `total_fare_amount` number, float — Total fare amount in the smallest unit of currency (multiple of 0.0001).
        - `total_tax_amount` number, float — Total taxes amount in the smallest unit of currency (multiple of 0.0001).
        - `total_fee_amount` number, float — Total fee amount in the smallest unit of currency (multiple of 0.0001).
    - `seller_details` object, required — Specifies the seller's details object.
      - `name` string — The seller's legal name (MAX 255; MIN 3).
      - `email` string — The seller's e-mail (MAX 255; MIN 3).
      - `reference` string — The seller's identification code (MAX 255; MIN 3).
      - `website` string — The seller's website URL (MAX 255; MIN 3).
      - `industry` 'ADVERTISING' | 'ART' | 'AUTOMOTIVE' | 'ANTIVIRUS' | 'BABY' | 'BEAUTY_&_PERSONAL_CARE' | 'BOOKS' | 'CAMERAS' | 'CAR_ELECTRONICS' | 'COMPUTING' | 'COUPONS' | 'DONATIONS' | 'DELIVERY' | 'ELECTRONICS' | 'ENTERTAINMENT' | 'EDUCATION' | 'FASHION' | 'GAMES' | 'GARDEN_&_OUTDOOR' | 'GROCERY_&_GOURMET_FOOD' | 'HANDMADE' | 'HOME' | 'INDUSTRIAL_&_SCIENTIFIC' | 'INVESTING_AND_FINANCIAL' | 'LEARNINGS' | 'MUSICAL' | 'OTHERS' | 'PET_SUPPLIES' | 'PHONES' | 'PAYROLL' | 'SERVICES' | 'SAAS' | 'TELEVISION' | 'STREAMING' | 'TICKETS' | 'TOYS_&_GAMES' | 'TRAVELS' | 'VIDEO_GAMES' | 'VIRTUAL_GOODS' | '' — The seller's industry (MAX 235; MIN 1) For more information access the [Industry category reference page](/reference/industry-category-list).
      - `merchant_category_code` string — MCC - The merchant category code (MAX 235; MIN 1).
      - `country` 'AR' | 'BO' | 'BR' | 'CL' | 'CO' | 'CR' | 'EC' | 'SV' | 'GT' | 'HN' | 'MX' | 'NI' | 'PA' | 'PY' | 'PE' | 'US' | 'UY' | '' — The seller's country (MAX 255; MIN 2; [ISO 3166-1](/reference/country-reference)).
      - `document` object — Specifies the document object of the seller.
        - `document_number` string — The seller's document number (MAX 40; MIN 3).
        - `document_type` 'DNI' | 'CI' | 'LC' | 'LE' | 'CUIT' | 'CUIL' | 'PAS' | 'CPF' | 'RG' | 'CNH' | 'CNPJ' | 'RUT' | 'RUN' | 'CC' | 'CE' | 'NIT' | 'DUI' | 'PIC' | 'DPI' | 'IFR' | 'INE' | 'CP' | 'RFC' | 'CURP' | 'CIP' | 'CIC' | 'CUI' | 'RUC' | '' — The seller's document type (MAX 6, MIN 2; [Document Type List](https://docs.y.uno/reference/country-reference)).
      - `phone` object — Specifies the seller's phone number object.
        - `country_code` string — The country calling code of the seller's phone (MAX 3; MIN 1). Check the [Country reference](country-reference) to see the phone codes.
        - `number` string — The seller's phone number, without the country code (MAX 32; MIN 1).
      - `address` object, required — Specifies the seller's address object.
        - `address_line_1` string, required — The primary address line of the seller (MAX 255; MIN 3).
        - `address_line_2` string — The secondary billing address line of the seller (MAX 255; MIN 3).
        - `building_number_1` string — The primary building number of the customer (MAX 255; MIN 3)
        - `building_number_2` string — The secondary building number of the customer (MAX 255; MIN 3)
        - `city` string, required — The city considered for the seller's address (MAX 255; MIN 3).
        - `country` 'AR' | 'BO' | 'BR' | 'CL' | 'CO' | 'CR' | 'EC' | 'SV' | 'GT' | 'HN' | 'MX' | 'NI' | 'PA' | 'PY' | 'PE' | 'US' | 'UY' | '', required — The country considered for the seller's address (MAX 2; MIN 2; [ISO 3166-1](/reference/country-reference)).
        - `state` string — The state considered for the seller's address (MAX 255; MIN 1).
        - `zip_code` string — The zipcode considered for the seller's address (MAX 11; MIN 4).
  - `country` 'AR' | 'BO' | 'BR' | 'CL' | 'CO' | 'CR' | 'EC' | 'SV' | 'GT' | 'HN' | 'MX' | 'NI' | 'PA' | 'PY' | 'PE' | 'US' | 'UY', required — Country where the transaction must be processed (MAX 2; MIN 2; [ISO 3166-1](/reference/country-reference)).
  - `merchant_reference` string — Identification of the payment transaction defined by the merchant (MAX 255; MIN 3). Optional to complement the merchant_order_id.
  - `customer_payer` object — Specifies customer object for payments.
    - `id` string — The unique identifier of the customer (UUID, 36 chars). This `id` is returned in Yuno's [Create Customer](/reference/create-customer) endpoint. This object is not mandatory for DIRECT payments. If the `id` of a customer is sent, it is not necessary to complete the rest of the `customer_payer` object, the information of the previously created customer will be taken into account for the payment. <br/> Example: `be8a1640-43d2-4a75-9694-c6468d82cba3`.
    - `merchant_customer_id` string — The unique identifier for a customer in the merchant's system, assigned by the merchant (MAX 255; MIN 1).
    - `merchant_customer_created_at` string, date-time — Customer´s registration date on the merchants platform (ISO 8601 MAX 27; MIN 27)
    - `merchant_customer_validations` object — Fraud validations for the customer payer
      - `account_is_verified` boolean — If the customer's account has been validated before on the merchant's side. True by default
      - `email_is_verified` boolean — If the customer's email has been validated before on the merchant's side. True by default
      - `phone_is_verified` boolean — If the customer's phone has been validated before on the merchant's side. True by default
    - `first_name` string — The customer's first name (MAX 255; MIN 1).
    - `last_name` string — The customer's last name (MAX 255; MIN 1).
    - `gender` 'M' | 'F' | 'NB' | 'NA' | 'NK' | 'U' — The customer's gender (MAX 2; MIN 1; (M=Male/F=Female/NB=Non Binary/NA=Not applicable/NK=Not Known/U=Undefined)).
    - `date_of_birth` string, date — The customer's date of birth in the YYYY-MM-DD format (Length: 10).
    - `email` string — The customer's e-mail (MAX 255; MIN 1).
    - `nationality` 'AR' | 'BO' | 'BR' | 'CL' | 'CO' | 'CR' | 'EC' | 'SV' | 'GT' | 'HN' | 'MX' | 'NI' | 'PA' | 'PY' | 'PE' | 'US' | 'UY' | '' — The customer's nationality (MAX 2; MIN 2; [ISO 3166-1](country-reference)).
    - `ip_address` string — The customer's IP address (MAX 45; MIN 1).
    - `device_fingerprints` object[] — The customer's [device fingerprints](/docs/direct-flow#important-add-ons) (MAX 4000; MIN 1). In case you are using a DIRECT integration and want to support fraud providers in the payment flow, you can use this object to specify the necessary information. For integrations using Yuno checkout the value is obtained automatically, do not send this field.
      - `provider_id` 'CLEARSALE' | 'CYBERSOURCE' | 'RISKIFIED' | 'SIGNIFYD' | 'VESTA' | 'KONDUTO' | 'BAYONET' | 'MERCADO_PAGO' | 'OPEN_PAY', required — The fraud screening provider id
      - `id` string, required — The device fingerprint associated to the provider
    - `browser_info` object — Specifies the browser_info object.
      - `user_agent` string — The user agent value of the customer's browser (MAX 255; MIN 3).
      - `accept_header` string — The accept header value of the customer's browser.
      - `platform` 'WEB' | 'IOS' | 'ANDROID' — The platform from which the customer is making the payment.
      - `color_depth` string — The color depth of the customer's browser in bits per pixel. This should be obtained by using the browser's screen.colorDepth property. Accepted values: 1, 4, 8, 15, 16, 24, 30, 32 or 48 bit color depth. (MAX 5; MIN 1).
      - `screen_height` string — The total height of the customer's device screen in pixels. (MAX 255; MIN 3).
      - `screen_width` string — The total width of the customer's device screen in pixels. (MAX 255; MIN 3).
      - `javascript_enabled` boolean — Indicates if Javascript is enabled or not in the device.
      - `language` string — The navigator.language value of the customer's browser (as defined in IETF BCP 47) (MAX 5; MIN 1).
      - `accept_browser` string — The accept browser value of the customer's browser
      - `accept_content` string — The accept content value of the customer's browser
      - `java_enabled` boolean — Indicates if Java is enabled or not in the device
      - `browser_time_difference` string — Indicates the browser time difference
    - `document` object — Specifies the customer's document object, including its number and type.
      - `document_number` string — Document number for customer (MAX 40; MIN 3). This field is required if the 'document' object is included in the request.
      - `document_type` 'DNI' | 'CI' | 'LC' | 'LE' | 'CUIT' | 'CUIL' | 'PAS' | 'CPF' | 'RG' | 'CNH' | 'CNPJ' | 'RUT' | 'RUN' | 'CC' | 'CE' | 'NIT' | 'DUI' | 'PIC' | 'DPI' | 'IFR' | 'INE' | 'CP' | 'RFC' | 'CURP' | 'CIP' | 'CIC' | 'CUI' | 'RUC' | '' — The customer's document type (MAX 6, MIN 2; [Country reference](/reference/country-reference)).
    - `billing_address` object — Specifies the customer's billing address object.
      - `address_line_1` string — The primary billing address line of the customer (MAX 255; MIN 3). This field is required if the 'billing_address' object is included in the request.
      - `address_line_2` string — The secondary billing address line of the customer (MAX 255; MIN 3).
      - `building_number_1` string — The primary building number of the customer (MAX 255; MIN 3).
      - `building_number_2` string — The secondary building number of the customer (MAX 255; MIN 3).
      - `city` string — The city considered for the billing address (MAX 255; MIN 3). This field is required if the 'billing_address' object is included in the request.
      - `country` 'AR' | 'BO' | 'BR' | 'CL' | 'CO' | 'CR' | 'EC' | 'SV' | 'GT' | 'HN' | 'MX' | 'NI' | 'PA' | 'PY' | 'PE' | 'US' | 'UY' | '' — The country considered for the billing address (MAX 2; MIN 2; [ISO 3166-1](country-reference)). This field is required if the 'billing_address' object is included in the request.
      - `state` string — State or province code. Use ISO 3166-2 subdivision codes (https://en.wikipedia.org/wiki/ISO_3166-2).
      - `zip_code` string — The zip code considered for the billing address (MAX 10; MIN 5).
      - `neighborhood` string — The neighborhood of the address line of the customer (MAX 255; MIN 2)
    - `shipping_address` object — Specifies the customer's shipping address object.
      - `address_line_1` string — The primary shipping address line of the customer (MAX 255; MIN 3). This field is required if the 'shipping_address' object is included in the request.
      - `address_line_2` string — The secondary shipping address line of the customer (MAX 255; MIN 3).
      - `building_number_1` string — The primary building number of the customer (MAX 255; MIN 3).
      - `building_number_2` string — The secondary building number of the customer (MAX 255; MIN 3).
      - `city` string — The city considered for the shipping address (MAX 255; MIN 3). This field is required if the 'shipping_address' object is included in the request.
      - `country` 'AR' | 'BO' | 'BR' | 'CL' | 'CO' | 'CR' | 'EC' | 'SV' | 'GT' | 'HN' | 'MX' | 'NI' | 'PA' | 'PY' | 'PE' | 'US' | 'UY' | '' — The country considered for the shipping address (MAX 2; MIN 2; [ISO 3166-1](country-reference)). **[Required]**.
      - `state` string — State or province code. Use ISO 3166-2 subdivision codes (https://en.wikipedia.org/wiki/ISO_3166-2).
      - `zip_code` string — The zip code considered for the shipping address (MAX 10; MIN 5).
      - `neighborhood` string — The neighborhood of the address line of the customer (MAX 255; MIN 2)
    - `phone` object — Specifies the customer's phone number object.
      - `country_code` string — The country calling code of the customer's phone (MAX 3; MIN 1). Check the [Country reference](country-reference) to see the phone codes. This field is required if the 'phone' object is included in the request.
      - `number` string — The customer's phone number, without the country code (MAX 32; MIN 1). This field is required if the 'phone' object is included in the request.
    - `geolocation` object — Customer's geolocation.
      - `latitude` string — Angular distance of a location on the earth south or north of the equator (MIN: 1, MAX:11)
      - `longitude` string — Angular measurement of the distance of a location on the earth east or west of the Greenwich observatory. (MIN: 1, MAX:11)
  - `workflow` 'SDK_CHECKOUT' | 'CHECKOUT' | 'REDIRECT' | 'DIRECT' | 'SDK_SEAMLESS' — The payment workflow. Indicates whether the integration will use Yuno´s SDK or will be a back to back connection. [Guides](/docs/sdks/overview/quickstart) <ul> <li>`SDK_CHECKOUT`: [Recommended] - Use Yuno's SDK. </li> <li>`DIRECT`: Back to back integration with provider info for custom payment experience. </li> <li>`REDIRECT`: Back to back integration with provider redirection. </li> </ul>
  - `payment_method` object, required — The payment method object.
    - `token` string — The one time use payment method token **provided by Yuno sdk**. If a payment is created using a token, it is not necessary to send a vaulted_token as well, it can be defined as null. Not necessary for back to back payments (MAX: 64; MIN: 36).
    - `vaulted_token` string — The vaulted token for a **previously stored payment_method**. If a payment is created using a vaulted_token, it is not necessary to send a token as well, it can be defined as null (MAX: 64; MIN: 36).
    - `type` 'ACUOTAZ' | 'ADDI' | 'APPLE_PAY' | 'BANCOLOMBIA_TOKEN_BOX' | 'BANCOLOMBIA_TRANSFER' | 'CARD' | 'CASH' | 'CODI' | 'DAVIPLATA' | 'EFECTY' | 'GOOGLE_PAY' | 'MERCADO_PAGO_CHECKOUT_PRO' | 'MERCADO_PAGO_WALLET' | 'NEQUI' | 'NU_PAY' | 'NU_PAY_ENROLLMENT' | 'OXXO' | 'PAYPAL' | 'PAYVALIDA' | 'PIX' | 'PSE' | 'SAFETYPAY' | 'SPEI' | 'TARJETA_CLAVE' | 'WEBPAY' | 'WIBOND' | 'CRYPTO' — Type of the payment method. Only required for `DIRECT` or `REDIRECT` workflow. Required when integrating wallets, even when using the SDK.
    - `detail` object — Specifies the payment method detail object.
      - `card` object — Specifies the card object.
        - `capture` boolean — Determines whether the card payment is captured immediately (`TRUE` = purchase) or only authorized (`FALSE` = requires capture or cancel).
        - `delayed_capture_settings` object — Configuration for automatically capturing the full authorized amount after a delay. Only valid when capture = `FALSE`.
          - `delay` string — Delay before Yuno performs the capture (ISO 8601 format).
          - `simplified_mode` boolean — If true, Yuno retries the capture if it fails.
        - `delayed_cancel_settings` object — Configuration for automatically canceling the authorization after a delay. Only valid when capture = `FALSE`.
          - `delay` string — Delay before Yuno performs the cancel (ISO 8601 format).
          - `simplified_mode` boolean — If true, Yuno retries the capture if it fails.
        - `installments` integer — The card installments.
        - `first_installment_deferral` integer — Number of months to be waited to debit the first installment.
        - `soft_descriptor` string — Statement descriptor passed per transaction. It is presented on the cardholder's bank statement (MAX 255). For merchant-initiated (MIT) recurring charges, set it on each payment; for Yuno subscription-engine rebills, set it on the subscription instead. Behavior and length limits vary by provider. See [Statement descriptor on recurring payments](/docs/payment-features/subscriptions/soft-descriptor).
        - `card_data` object — Specifies the card_data object.
          - `number` string, required — Card's number without any separators. (MAX 19; MIN 8) - only available for PCI certified merchants.
          - `expiration_month` integer — Card's expiration month - MM (MAX 2; MIN 2) - only available for PCI certified merchants.
          - `expiration_year` integer — Card's expiration year - YYYY (MAX 4; MIN 2) - only available for PCI certified merchants.
          - `security_code` string — Card's security code (MAX 4; MIN 3) - only available for PCI certified merchants.
          - `holder_name` string, required — Cardholder's full name as it appears on the card (MAX 26; MIN 3) - only available for PCI certified merchants.
          - `type` 'CREDIT' | 'DEBIT' — The card type. For dual cards (like in Brazil), you can specify the type of card that is being processed so we can inform the providers.
        - `network_token` object — The network token object. Only available for merchants that handle the network token generation/management from their side. [Direct Network token guide](https://docs.y.uno/docs/network-tokens#2--use-your-existing-network-tokens)
          - `token_data` object — Specifies the token_data object.
            - `number` string, required — [Mandatory] - Token's number without any separators. (MAX 19; MIN 8) - only available for PCI certified merchants
            - `holder_name` string — Cardholder's full name as it appears on the Token (MAX 26; MIN 3)
            - `expiration_month` string, required — Token's expiration month - MM (MAX 2; MIN 2)
            - `expiration_year` string, required — Token's expiration year - YYYY (MAX 4; MIN 4) - only available for PCI certified merchants
            - `cryptogram` string, required — [Mandatory] - The unique cryptogram generated by the issuer for the network token in use in the transaction.
            - `electronic_commerce_indicator` string — [Only required for certain providers] - In case the token has been authenticated by Mastercard the field should be set to 02. For Visa or not authenticated tokens, is not necessary to send the field.
            - `token_requestor_id` string — [Only required for certain providers] - Token requestor ID of the merchant
        - `three_d_secure` object — 3DS secure information
          - `three_d_secure_setup_id` string — The identifier returned by [POST /v1/three-d-secure/setups](/reference/three-d-secure-setups/create-three-d-secure-setup). Required when using 3D Secure 2 (3DS2) authentication in a server-to-server integration where you collect browser and device data on your side.
          - `version` '1.0' | '2.0' | '2.1.0' | '2.2.0' | '2.2.1' | '2.3.0' | '2.3.1' — [Optional for 3DS integration without Yuno's JS] - Refers to the protocol version of the EMV 3-D Secure specification used. 1.0, 2.0, 2.1.0, 2.2.0, 2.2.1, 2.3.0 y 2.3.1
          - `electronic_commerce_indicator` string — [Optional for 3DS integration without Yuno's JS] - This field must be completed with the result of the ECI field provided by the 3d Secure service. The Electronic Commerce Indicator (ECI) informs the card issuer if the transaction was protected by a security protocol like VbV or MCSC. It is mandated by Visa and MasterCard that all 3-D Secure transactions have this value populated in the authorization request. (Min: 0, max: 2).
          - `cryptogram` string — [Optional for 3DS integration without Yuno's JS] - This field must be completed with the result of the cryptogram field provided by the 3DSecure service. In Visa transactions, it represents the Cardholder Authentication Verification Value (CAVV), a cryptographic value generated by the Issuer as evidence of payment authentication during online purchase to qualify for chargeback protection. MasterCard transactions have a similar value called Accountholder Authentication Value (AAV) or the Universal Cardholder Authentication Field (UCAF). When submitting a transaction for authorization, the merchant must include the CAVV or AAV/UCAF to demonstrate that the cardholder has been authenticated. It is typically base64-encoded. (Min: 0, Max: 40).
          - `transaction_id` string — [Optional for 3DS integration without Yuno's JS] - For 3DS v1: This is the Unique Transaction Identifier. It is automatically generated by the MPI. It is typically 28 bytes in length and base64-encoded. Is commonly referred to as XID. (Min: 0, Max: 40). For 3DS v2: Universally unique transaction identifier assigned by the DS to identify a single transaction. (Min: 36, Max:36).
          - `directory_server_transaction_id` string — [Optional for 3DS integration without Yuno's JS] - Transaction ID generated by the Mastercard directory server during authentication (MAX 255; MIN 3).
        - `verify` boolean — Using amount = 0 and verify = true, you can verify the user's card without authorizing a real amount. If the field is not sent, we will take it as false.
        - `acquirer_reference_number` string — Unique identifier assigned by the card acquirer to track the transaction through the card network. Used for reconciliation and chargebacks.
        - `stored_credentials` object — Indicates the processing type of the transaction. Refer to the <a href="../docs/stored-credentials#create-a-payment-with-processing-type" class="link_stored_credential">Stored credentials</a> documentation for more information.
          - `reason` 'CARD_ON_FILE' | 'SUBSCRIPTION' | 'UNSCHEDULED_CARD_ON_FILE' — Indicates the processing type of the transaction.
          - `usage` 'FIRST' | 'USED' — This field Iets you indicate if this is the first time the vaulted_token/network_token is used for a payment.
          - `subscription_agreement_id` string — This field lets you indicate the identification of the agreement with the customer for a subscription. Mainly for MX.(MAX 255; MIN 3). [Stored credentials](/docs/stored-credentials)
          - `network_transaction_id` string — Unique identifier assigned to a transaction by the card network. It is used to track and reference specific transactions, particularly in recurring payment scenarios, ensuring consistency and traceability across the payment lifecycle. (MAX 255; MIN 3). [Stored credentials](/docs/stored-credentials)
        - `external_providers_data` object[] — Array of provider-issued tokens for inline card payments. Use when a provider-issued token is available for this single payment without prior enrollment. Mutually exclusive with raw card data (`card_data.number`, `card_data.security_code`, etc.). Minimum 1 item, maximum 5. Each `(provider_id, connection_id)` pair must be unique.
          - `connection_id` string, uuid, required — The Yuno connection / account-integration identifier that owns the token.
          - `provider_id` string, required — Provider identifier (e.g., `ADYEN`, `CHECKOUT`).
          - `provider_token` string, required — The token issued by the provider for this card.
      - `ticket` object — Specifies the ticket object
        - `benefit_type` 'PRIVATE' | 'JUNAEB' — Specifies the user's benefit type for Pluxee Chile.
        - `expires_at` string, date-time — Payment methods expiration date. "yyyy-MM-dd HH:mm:ss.SSSz". Only available when the provider associated to the payment supports it. Please feel free to reach out to your technical account manager for further questions.
      - `wallet` object — Specifies the wallet object
        - `payment_token` string — Complete wallet response payload as a JSON string, exactly as returned by the wallet provider
        - `expires_at` string, date-time — Payment methods expiration date. "yyyy-MM-dd HH:mm:ss.SSSz". Only available when the provider associated to the payment supports it. Please feel free to reach out to your technical account manager for further questions.
        - `capture` boolean — Indicates whether the wallet payment should be captured immediately (true) or only authorized for later capture (false)
        - `soft_descriptor` string — Statement descriptor passed per transaction. It is presented on the cardholder's bank statement (MAX 255). Apple Pay / Google Pay rebills ride the card / network-token rail, so the descriptor is applied the same way as for cards. Behavior and length limits vary by provider. See [Statement descriptor on recurring payments](/docs/payment-features/subscriptions/soft-descriptor).
        - `domain_url` string — Registered domain used during the wallet flow. (MAX 255; MIN 3).
        - `verify` boolean — Enables card verification flow through the wallet. When true, a verification transaction (e.g., zero-dollar auth) is performed instead of a regular payment.
        - `stored_credentials` object — Indicates the processing type of the transaction. Refer to the <a href="../docs/stored-credentials#create-a-payment-with-processing-type" class="link_stored_credential">Stored credentials</a> documentation for more information.
          - `reason` 'CARD_ON_FILE' | 'SUBSCRIPTION' | 'UNSCHEDULED_CARD_ON_FILE' — Indicates the processing type of the transaction.
          - `usage` 'FIRST' | 'USED' — This field Iets you indicate if this is the first time the vaulted_token/network_token is used for a payment.
          - `subscription_agreement_id` string — This field lets you indicate the identification of the agreement with the customer for a subscription. Mainly for MX.(MAX 255; MIN 3). [Stored credentials](/docs/stored-credentials)
          - `network_transaction_id` string — Unique identifier assigned to a transaction by the card network. It is used to track and reference specific transactions, particularly in recurring payment scenarios, ensuring consistency and traceability across the payment lifecycle. (MAX 255; MIN 3). [Stored credentials](/docs/stored-credentials)
          - `additional_data` object — This structure is used to send additional information about recurrence. It's optional, and few providers require it (e.g. Mercado Pago). Contact your TAM to confirm if it's needed for your integration.
            - `billing_cycles` object — Specifies the `billing_cycles` object. Defines the number of charges associated to the subscription. If using this object, you must enter data on all fields.
              - …
            - `frequency` object — Specifies the frequency type (e.g., DAY, WEEK, MONTH, YEAR) and value. Enter data on all fields if using this object.
              - …
            - `availability` object — Specifies the `availability` object. Defines a date interval based on starting and ending dates when the subscription is available to use.
              - …
      - `bank_transfer` object — Specifies the bank transfer object.
        - `pre_debit_notification_id` string, uuid — ID of the pre-debit notification that precedes this recurring debit, as returned by the Create pre-debit notification endpoint. Required for UPI Autopay recurring debits (NPCI compliance). Yuno validates that the notification exists, belongs to your account, and is in SENT status; otherwise the payment is rejected with PRE_DEBIT_NOTIFICATION_NOT_FOUND or PRE_DEBIT_NOTIFICATION_NOT_SENT (422).
        - `soft_descriptor` string — Human-readable reference associated with the bank transfer. Commonly used for reconciliation and operational purposes (MAX 255; MIN 1).
        - `expires_at` string, date-time — Payment methods expiration date. "yyyy-MM-dd HH:mm:ss.SSSz". Only available when the provider associated to the payment supports it. Please feel free to reach out to your technical account manager for further questions.
        - `account_type` 'CHECKINGS' | 'SAVINGS' — Type of the bank account (MAX 255; MIN 3). CHECKINGS/SAVINGS
        - `bank_account` string — The number of the bank account (MAX 255; MIN 3).
        - `bank_id` string — Identifier of the bank selected for the transfer when the provider requires choosing one.
        - `routing_number` string — The routing_number of the bank account (MAX 255; MIN 3).
        - `code` string — The beneficiary's specific financial institution code (MAX 8).
        - `branch` string — The beneficiary's specific financial institution branch (MAX 8).
        - `branch_digit` string — The beneficiary's specific financial institution branch digit (MAX 2).
        - `beneficiary_name` string — Name of the account holder (MAX 255; MIN 3).
        - `beneficiary_type` 'INDIVIDUAL' | 'ENTITY' — Type of the beneficiary (MAX 255; MIN 3).
        - `third_party_token_id` string — Tokenized ID of the destination account (MAX 255; MIN 3).
        - `account_holder_type` 'INDIVIDUAL' | 'COMPANY' — Bank account holder type (for ACH payments).
        - `stored_credentials` object — Indicates the processing type of the transaction. Refer to the [stored credentials](/docs/stored-credentials#create-a-payment-with-processing-type) documentation for more information.
          - `reason` 'SUBSCRIPTION' — Indicates the processing type of the transaction.
          - `usage` 'FIRST' | 'USED' — This field Iets you indicate if this is the first time the vaulted_token/network_token is used for a payment.
          - `subscription_agreement_id` string — This field lets you indicate the identification of the agreement with the customer for a subscription (MAX 255; MIN 3). See [Stored credentials](/docs/stored-credentials) for more info.
          - `additional_data` object — This object is used to send additional information about recurrence.
            - `billing_cycles` object — Defines the number of charges associated to the subscription. If using this object, you must enter data on all fields.
              - …
            - `frequency` object — Specifies the frequency type (e.g., DAY, WEEK, MONTH, YEAR) and value. Enter data on all fields if using this object.
              - …
            - `availability` object — Defines a date interval based on starting and ending dates when the subscription is available to use.
              - …
        - `bank_account_mask_number` string — Masked bank account number associated with the bank transfer (for example, ****6789). This is account data, not mandate data.
        - `mandate` object — Direct debit mandate details, for bank transfer methods that operate with mandates (for example, ACH, SEPA, BACS, PAD).
          - `id` string — Mandate identifier, as provided by the payment provider.
          - `info` string — Free-text mandate information.
          - `received_status` string — Provider status indicating whether the mandate was received. Forwarded as provided by the payment provider.
          - `existing_status` string — Provider status of the existing mandate. Forwarded as provided by the payment provider.
          - `created_at` string, date-time — Date and time when the mandate was created (ISO 8601).
          - `updated_at` string, date-time — Date and time when the mandate was last updated (ISO 8601).
      - `strong_customer_authentication_exemptions` string[] — Array of Strong Customer Authentication (SCA) exemptions that can be applied to the transaction to reduce friction while maintaining security compliance.
    - `vault_on_success` boolean — Flag to enroll the card after a successful payment (requires `customer_payer.id`).
    - `account_updater` boolean — Per-card control for Card Account Updater. When set to `false`, the card enrolled or used in this payment is excluded from Card Account Updater and will not receive automatic card-detail updates. When omitted, the card follows your account's Account Updater configuration.
    - `otp` object — Specifies the OTP object.
      - `is_required` boolean — Specifies if a one time password is required in the flow
  - `subscription` object — Specifies the subscription object.
    - `frequency` object — Specifies the frequency object (used when creating a payment along with the subscription).
      - `type` 'DAY' | 'WEEK' | 'MONTH' | 'YEAR' — Frequency of the subscription payment.
      - `execution` 'YUNO' | 'MERCHANT' — Indicates if the payment is made by Yuno or the merchant.
    - `availability` object — Specifies the availability object (used when creating a payment along with the subscription).
      - `start_at` string, date-time — Start date of the subscription in UTC time ([ISO 8601](https://en.wikipedia.org/wiki/ISO_8601), MAX 27; MIN 27).
      - `finish_at` string, date-time — End date of the subscription in UTC time ([ISO 8601](https://en.wikipedia.org/wiki/ISO_8601), MAX 27; MIN 27).
    - `amount` object — Specifies the amount object (used when creating a payment along with the subscription).
      - `value` number, float — The amount of the subscription payment.
      - `currency` string — The currency used to make the payment. For a full list of currency codes, see [Country reference](/reference/country-reference) (MAX 3; MIN 3; ISO 4217).
      - `type` 'FIXED' | 'VARIABLE' — Type of the subscription payment
    - `id` string — Unique identifier of the subscription payment (used when creating a payment for an existing subscription).
    - `billing_date` object — Specifies the billing date object (used when creating a payment for an existing subscription).
      - `type` 'FIXED_DAY' | 'LAST_DAY' — Type of the billing date
      - `day` string — Day of the month when the subscription payment is made
  - `callback_url` string — The URL where to redirect the customer after the payment. Only required for DIRECT integrations that have a redirection (MAX 526; MIN 3).
  - `fraud_screening` object — Fraud screening object.
    - `stand_alone` boolean — Optional field to send in the payment indicating if the fraud screening is stand alone, meaning that a payment will not be excecuted after the fraud screening is made. You can use this field while creating your CARD route.
  - `split_marketplace` object[] — Split marketplace array of objects
    - `recipient_id` string — The unique identifier of the recipient in the Yuno system. <br/> You must provide the [`recipient_id`](/reference/create-recipient-1) (Yuno-generated) or the `provider_recipient_id` (external provider's ID) when creating a payment.
    - `provider_recipient_id` string — The recipient ID provided by the external payment provider, if applicable. <br/> You must provide the `provider_recipient_id` or the [`recipient_id`](/reference/create-recipients) (Yuno-generated) when creating a payment.
    - `description` string — Description for the split. (MAX 255; MIN 3).
    - `type` 'PURCHASE' | 'PAYMENTFEE' | 'VAT' | 'COMMISSION' | 'MARKETPLACE' | 'SHIPPING', required — The type of split. `recipient_id` is mandatory for `PURCHASE` and `MARKETPLACE`.
    - `merchant_reference` string — Optional unique identifier for the split transaction (MAX 255; MIN 3).
    - `recipient_type` 'MEAL' | 'FOOD' | 'MULTI_BENEFITS' | 'FLEET' — The type of recipient for the provider.
    - `amount` object — Defines the amount of the split. This field is optional if the recipient has a `split_configuration` defined, as the amount will be calculated automatically.
      - `value` number, float, required — The split amount (multiple of 0.0001).
      - `currency` string, required — The currency used to make the payment. For a full list of currency codes, see [Country reference](/reference/country-reference) (MAX 3; MIN 3; ISO 4217).
    - `liability` object — Optional information regarding the recipient's liability for fees and chargebacks.
      - `processing_fee` 'MERCHANT' | 'RECIPIENT' | 'SHARED' — Indicates who will be charged the transaction fee.
      - `chargebacks` boolean — The recipient is responsible in case of a chargeback.
  - `metadata` object[] — Custom key–value tags to track this payment or add context (e.g., order_id, invoice, campaign). Up to 120 items.
    - `key` string, required — The metadata key (MAX 48. Value: MIN:1, MAX:48). **[Case Sensitive]**
    - `value` string, required — The metadata key value (MAX 512. Value: MIN:1, MAX:512). **[Case Sensitive]**

## Response `201`

201

- union
  - object
    - `id` string
    - `account_id` string
    - `description` string
    - `country` string
    - `status` string
    - `sub_status` string
    - `merchant_order_id` string
    - `created_at` string
    - `updated_at` string
    - `amount` object
      - `captured` integer
      - `currency` string
      - `currency_conversion` object
        - `id` string — Unique identifier of the currency conversion rate query (UUID, 36 chars).
        - `code` string — Yuno's internal identifier for this DCC record. Example: `ccv_01HVK3Z9M2...`.
        - `cardholder_currency` string — Currency of the cardholder (ISO 4217, 3 chars).
        - `cardholder_amount` number — Total amount billed to the cardholder in `cardholder_currency`.
        - `cardholder_accepted` boolean — Indicates if the cardholder accepted the DCC offer.
        - `rate` number — Applied FX rate (markup included).
        - `rate_margin_percentage` number — Markup added over the wholesale rate, expressed as a percentage.
        - `rate_source` string — Wholesale benchmark used for the quote.
        - `provider` string — DCC provider that issued the quote.
        - `description` string — Verbatim disclosure text shown to the cardholder.
        - `created_at` string, date-time — Timestamp when the DCC provider issued the quote.
        - `expires_at` string, date-time — Timestamp when the quote expires.
        - `status` 'QUOTED' | 'APPLIED' | 'EXPIRED' | 'DECLINED' | 'REVERSED' | 'SERVICE_UNAVAILABLE' | 'RATES_UNAVAILABLE' | 'UNSUPPORTED_CARD' | 'UNSUPPORTED_LOCAL_CARD' | 'LESS_THAN_MINIMUM' | 'NO_INFORMATION' — Lifecycle state of the conversion.
        - `error_reason` 'INVALID_MERCHANT_CONFIGURATION' | 'CURRENCY_NOT_CONFIGURED' | 'PROVIDER_NOT_CONFIGURED' | 'NOT_ELIGIBLE' | 'BIN_UNKNOWN' | 'BIN_NOT_ELIGIBLE' | 'LOCAL_CARD' | 'UNSUPPORTED_BRAND' | 'UNSUPPORTED_FUNDING_TYPE' | 'AMOUNT_BELOW_MINIMUM' | 'AMOUNT_ABOVE_MAXIMUM' | 'SERVICE_UNAVAILABLE' | 'RATES_UNAVAILABLE' | 'NO_INFORMATION_AVAILABLE' | 'INVALID_REQUEST' | 'UNAUTHORISED_REQUEST' | 'MALFORMED_AMOUNT' | 'MALFORMED_CURRENCY' | 'RATE_EXPIRED' | 'PROVIDER_ERROR' | 'TIMEOUT' | 'UNKNOWN' — Populated only when DCC could not be applied.
        - `provider_data` object — Acquirer round-trip data returned by the underlying provider adapter.
      - `refunded` integer
      - `value` integer
    - `checkout` object
      - `session` string
      - `sdk_action_required` boolean
    - `payment_method` object
      - `vaulted_token` string
      - `type` string
      - `vault_on_success` boolean
      - `token` string
      - `parent_payment_method_type` unknown
      - `payment_method_detail` object
        - `card` object
          - `verify` boolean
          - `capture` boolean
          - `installments` integer
          - `installments_plan_id` unknown
          - `first_installment_deferral` integer
          - `installments_type` string
          - `installment_amount` unknown
          - `soft_descriptor` string
          - `authorization_code` string
          - `retrieval_reference_number` string
          - `acquirer_reference_number` string
          - `voucher` unknown
          - `card_data` object
            - `holder_name` string
            - `iin` string
            - `lfd` string
            - `number_length` integer
            - `security_code_length` integer
            - `brand` string
            - `issuer_name` string
            - `issuer_code` unknown
            - `country_code` string
            - `category` string
            - `type` string
            - `three_d_secure` object
              - …
            - `fingerprint` string
            - `expiration_month` integer
            - `expiration_year` integer
          - `stored_credentials` object
            - `reason` unknown
            - `usage` unknown
            - `subscription_agreement_id` unknown
            - `network_transaction_id` unknown
    - `customer_payer` object
      - `id` string
      - `merchant_customer_id` string
      - `first_name` string
      - `last_name` string
      - `gender` string
      - `date_of_birth` string
      - `email` string
      - `nationality` string
      - `ip_address` string
      - `device_fingerprint` string
      - `device_fingerprints` unknown[]
        - unknown
      - `browser_info` object
        - `user_agent` string
        - `accept_header` string
        - `accept_content` unknown
        - `accept_browser` unknown
        - `color_depth` string
        - `screen_height` string
        - `screen_width` string
        - `javascript_enabled` boolean
        - `java_enabled` unknown
        - `browser_time_difference` unknown
        - `language` string
      - `document` object
        - `document_type` string
        - `document_number` string
      - `phone` object
        - `number` string
        - `country_code` string
      - `billing_address` object
        - `address_line_1` string
        - `address_line_2` string
        - `country` string
        - `state` string
        - `city` string
        - `zip_code` string
        - `neighborhood` string
      - `shipping_address` object
        - `address_line_1` string
        - `address_line_2` string
        - `country` string
        - `state` string
        - `city` string
        - `zip_code` string
        - `neighborhood` string
      - `merchant_customer_created_at` string
    - `additional_data` object
      - `airline` object
        - `pnr` string
        - `legs` object[]
          - `departure_airport` string
          - `departure_datetime` string
          - `departure_airport_timezone` string
          - `arrival_airport` string
          - `arrival_airport_timezone` string
          - `arrival_datetime` string
          - `carrier_code` string
          - `flight_number` string
          - `fare_basis_code` string
          - `fare_class_code` string
          - `base_fare` integer
          - `base_fare_currency` string
          - `stopover_code` string
        - `passengers` object[]
          - `first_name` string
          - `last_name` string
          - `middle_name` string
          - `type` string
          - `date_of_birth` string
          - `nationality` string
          - `document` object
            - `document_type` string
            - `document_number` string
          - `country` string
          - `loyalty_number` string
          - `loyalty_tier` string
          - `email` unknown
          - `phone` unknown
        - `ticket` object
          - `ticket_number` string
          - `e_ticket` boolean
          - `restricted` boolean
          - `total_fare_amount` integer
          - `total_tax_amount` integer
          - `total_fee_amount` integer
          - `issue` unknown
        - `tickets` unknown
      - `order` object
        - `fee_amount` number
        - `shipping_amount` number
        - `tip_amount` unknown
        - `items` object[]
          - `id` string
          - `name` string
          - `quantity` integer
          - `unit_amount` integer
          - `category` string
          - `brand` string
          - `sku_code` string
          - `manufacture_part_number` string
          - `image_url` string
        - `account_funding` unknown
        - `tickets` unknown
        - `fulfillment` unknown
        - `discounts` unknown
      - `seller_details` unknown
    - `transactions` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `parent_payment_method_type` unknown
        - `detail` object
          - `card` object
            - `verify` boolean
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `sub_status` string
        - `status_detail` string
        - `response_message` unknown
        - `response_code` unknown
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` unknown
        - `iso8583_response_code` unknown
        - `iso8583_response_message` unknown
      - `connection_data` object
        - `id` string
        - `name` unknown
      - `created_at` string
      - `updated_at` string
    - `transactions_history` object[]
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `parent_payment_method_type` unknown
        - `detail` object
          - `card` object
            - `verify` boolean
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `sub_status` string
        - `status_detail` string
        - `response_message` unknown
        - `response_code` unknown
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` unknown
        - `iso8583_response_code` unknown
        - `iso8583_response_message` unknown
      - `connection_data` object
        - `id` string
        - `name` unknown
      - `created_at` string
      - `updated_at` string
    - `callback_url` string
    - `workflow` string
    - `metadata` object[]
      - `key` string
      - `value` string
    - `fraud_screening` unknown
    - `payment_link_id` string
    - `subscription_code` unknown
    - `routing_rules` object
      - `smart_routing` boolean
      - `monitors` boolean
      - `condition` object
        - `id` integer
        - `name` unknown
        - `description` unknown
    - `simplified_mode` boolean
  - object
    - `id` string
    - `account_id` string
    - `description` string
    - `country` string
    - `status` string
    - `sub_status` string
    - `merchant_order_id` string
    - `created_at` string
    - `updated_at` string
    - `amount` object
      - `captured` integer
      - `currency` string
      - `refunded` integer
      - `value` integer
    - `checkout` object
      - `session` string
      - `sdk_action_required` boolean
    - `payment_method` object
      - `vaulted_token` string
      - `type` string
      - `vault_on_success` boolean
      - `token` string
      - `payment_method_detail` object
        - `card` object
          - `verify` boolean
          - `capture` boolean
          - `installments` integer
          - `installments_plan_id` unknown
          - `first_installment_deferral` integer
          - `installments_type` string
          - `installment_amount` unknown
          - `soft_descriptor` string
          - `authorization_code` string
          - `retrieval_reference_number` string
          - `acquirer_reference_number` string
          - `voucher` unknown
          - `card_data` object
            - `holder_name` string
            - `iin` string
            - `lfd` string
            - `number_length` integer
            - `security_code_length` integer
            - `brand` string
            - `issuer_name` string
            - `issuer_code` unknown
            - `category` string
            - `type` string
            - `three_d_secure` object
              - …
          - `stored_credentials` object
            - `reason` string
            - `usage` string
            - `subscription_agreement_id` string
            - `network_transaction_id` unknown
    - `customer_payer` object
      - `id` string
      - `merchant_customer_id` string
      - `first_name` string
      - `last_name` string
      - `gender` unknown
      - `date_of_birth` unknown
      - `email` string
      - `nationality` unknown
      - `ip_address` unknown
      - `device_fingerprint` unknown
      - `browser_info` object
        - `user_agent` string
        - `accept_header` string
        - `accept_content` unknown
        - `accept_browser` unknown
        - `color_depth` string
        - `screen_height` string
        - `screen_width` string
        - `javascript_enabled` unknown
        - `java_enabled` unknown
        - `browser_time_difference` unknown
        - `language` string
      - `document` unknown
      - `phone` unknown
      - `billing_address` unknown
      - `shipping_address` unknown
      - `merchant_customer_created_at` unknown
    - `additional_data` unknown
    - `transactions` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` boolean
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `transactions_history` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` unknown
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `split` unknown[]
      - unknown
    - `workflow` string
    - `metadata` unknown[]
      - unknown
    - `fraud_screening` object
      - `status` string
      - `stand_alone` boolean
      - `created_at` string
      - `updated_at` string
      - `transactions` object[]
        - `type` string
        - `status` string
        - `response_code` string
        - `response_message` string
        - `device_fingerprint` string
        - `created_at` string
        - `updated_at` string
        - `provider_data` object
          - `provider_id` string
          - `transaction_id` string
          - `status` string
          - `score` string
          - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
          - `raw_response` object
          - `account_id` string
          - `status_detail` string
          - `three_d_secure_provider` string
          - `three_d_secure_setup_transaction_id` string
          - `strong_customer_authentication_exemptions` string[]
    - `payment_link_id` string
    - `subscription_code` unknown
    - `routing_rules` object
      - `condition` object
        - `id` integer
        - `name` unknown
        - `description` unknown
  - object
    - `id` string
    - `account_id` string
    - `description` string
    - `country` string
    - `status` string
    - `sub_status` string
    - `merchant_order_id` string
    - `created_at` string
    - `updated_at` string
    - `amount` object
      - `captured` integer
      - `currency` string
      - `refunded` integer
      - `value` integer
    - `checkout` object
      - `session` string
      - `sdk_action_required` boolean
    - `payment_method` object
      - `vaulted_token` string
      - `type` string
      - `vault_on_success` boolean
      - `token` string
      - `payment_method_detail` object
        - `card` object
          - `verify` boolean
          - `capture` boolean
          - `installments` integer
          - `installments_plan_id` unknown
          - `first_installment_deferral` integer
          - `installments_type` string
          - `installment_amount` unknown
          - `soft_descriptor` string
          - `authorization_code` string
          - `retrieval_reference_number` string
          - `acquirer_reference_number` string
          - `voucher` unknown
          - `card_data` object
            - `holder_name` string
            - `iin` string
            - `lfd` string
            - `number_length` integer
            - `security_code_length` integer
            - `brand` string
            - `issuer_name` string
            - `issuer_code` unknown
            - `category` string
            - `type` string
            - `three_d_secure` object
              - …
          - `stored_credentials` object
            - `reason` string
            - `usage` string
            - `subscription_agreement_id` string
            - `network_transaction_id` unknown
    - `customer_payer` object
      - `id` unknown
      - `merchant_customer_id` unknown
      - `first_name` string
      - `last_name` string
      - `gender` string
      - `date_of_birth` string
      - `email` string
      - `nationality` string
      - `ip_address` string
      - `device_fingerprint` unknown
      - `browser_info` object
        - `user_agent` string
        - `accept_header` string
        - `accept_content` unknown
        - `accept_browser` unknown
        - `color_depth` string
        - `screen_height` string
        - `screen_width` string
        - `javascript_enabled` unknown
        - `java_enabled` unknown
        - `browser_time_difference` unknown
        - `language` string
      - `document` object
        - `document_type` string
        - `document_number` string
      - `phone` unknown
      - `billing_address` unknown
      - `shipping_address` unknown
      - `merchant_customer_created_at` unknown
    - `additional_data` object
      - `airline` object
        - `pnr` string
        - `legs` object[]
          - `departure_airport` string
          - `departure_datetime` string
          - `departure_airport_timezone` string
          - `arrival_airport` string
          - `arrival_airport_timezone` string
          - `arrival_datetime` string
          - `carrier_code` string
          - `flight_number` string
          - `fare_basis_code` string
          - `fare_class_code` string
          - `base_fare` integer
          - `base_fare_currency` string
          - `stopover_code` string
        - `passengers` object[]
          - `first_name` string
          - `last_name` string
          - `middle_name` string
          - `type` string
          - `date_of_birth` string
          - `nationality` string
          - `document` object
            - `document_type` string
            - `document_number` string
          - `country` unknown
          - `loyalty_number` string
          - `loyalty_tier` string
          - `email` string
          - `phone` object
            - `number` string
            - `country_code` string
        - `ticket` unknown
        - `tickets` object[]
          - `ticket_number` string
          - `e_ticket` boolean
          - `restricted` boolean
          - `total_fare_amount` integer
          - `total_tax_amount` integer
          - `total_fee_amount` integer
          - `issue` object
            - `carrier_prefix_code` string
            - `travel_agent_code` string
            - `travel_agent_name` string
            - `date` string
            - `address` string
            - `city` string
            - `country` string
            - `zip_code` string
      - `order` unknown
      - `seller_details` unknown
    - `transactions` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` boolean
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `transactions_history` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` unknown
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `split` unknown[]
      - unknown
    - `workflow` string
    - `metadata` unknown[]
      - unknown
    - `fraud_screening` object
      - `status` string
      - `stand_alone` boolean
      - `created_at` string
      - `updated_at` string
      - `transactions` object[]
        - `type` string
        - `status` string
        - `response_code` string
        - `response_message` string
        - `device_fingerprint` string
        - `created_at` string
        - `updated_at` string
        - `provider_data` object
          - `provider_id` string
          - `transaction_id` string
          - `status` string
          - `score` string
          - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
          - `raw_response` object
          - `account_id` string
          - `status_detail` string
          - `three_d_secure_provider` string
          - `three_d_secure_setup_transaction_id` string
          - `strong_customer_authentication_exemptions` string[]
    - `payment_link_id` string
    - `subscription_code` unknown
    - `routing_rules` object
      - `condition` object
        - `id` integer
        - `name` unknown
        - `description` unknown
  - object
    - `id` string
    - `account_id` string
    - `description` string
    - `country` string
    - `status` string
    - `sub_status` string
    - `merchant_order_id` string
    - `created_at` string
    - `updated_at` string
    - `amount` object
      - `captured` integer
      - `currency` string
      - `refunded` integer
      - `value` integer
    - `checkout` object
      - `session` string
      - `sdk_action_required` boolean
    - `payment_method` object
      - `vaulted_token` string
      - `type` string
      - `vault_on_success` boolean
      - `token` string
      - `payment_method_detail` object
        - `card` object
          - `verify` boolean
          - `capture` boolean
          - `installments` integer
          - `installments_plan_id` unknown
          - `first_installment_deferral` integer
          - `installments_type` string
          - `installment_amount` unknown
          - `soft_descriptor` string
          - `authorization_code` string
          - `retrieval_reference_number` string
          - `acquirer_reference_number` string
          - `voucher` unknown
          - `card_data` object
            - `holder_name` string
            - `iin` string
            - `lfd` string
            - `number_length` integer
            - `security_code_length` integer
            - `brand` string
            - `issuer_name` string
            - `issuer_code` unknown
            - `category` string
            - `type` string
            - `three_d_secure` object
              - …
          - `stored_credentials` object
            - `reason` string
            - `usage` string
            - `subscription_agreement_id` string
            - `network_transaction_id` unknown
    - `customer_payer` object
      - `id` unknown
      - `merchant_customer_id` string
      - `first_name` string
      - `last_name` string
      - `gender` string
      - `date_of_birth` string
      - `email` string
      - `nationality` string
      - `ip_address` string
      - `device_fingerprint` unknown
      - `browser_info` object
        - `user_agent` string
        - `accept_header` string
        - `accept_content` unknown
        - `accept_browser` unknown
        - `color_depth` string
        - `screen_height` string
        - `screen_width` string
        - `javascript_enabled` unknown
        - `java_enabled` unknown
        - `browser_time_difference` unknown
        - `language` string
      - `document` object
        - `document_type` string
        - `document_number` string
      - `phone` object
        - `number` string
        - `country_code` string
      - `billing_address` object
        - `address_line_1` string
        - `address_line_2` string
        - `country` string
        - `state` string
        - `city` string
        - `zip_code` string
        - `neighborhood` unknown
      - `shipping_address` object
        - `address_line_1` string
        - `address_line_2` string
        - `country` string
        - `state` string
        - `city` string
        - `zip_code` string
        - `neighborhood` unknown
      - `merchant_customer_created_at` unknown
    - `additional_data` unknown
    - `taxes` unknown
    - `transactions` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` boolean
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `transactions_history` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` unknown
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `split` unknown[]
      - unknown
    - `workflow` string
    - `metadata` unknown[]
      - unknown
    - `fraud_screening` object
      - `status` string
      - `stand_alone` boolean
      - `created_at` string
      - `updated_at` string
      - `transactions` object[]
        - `type` string
        - `status` string
        - `response_code` string
        - `response_message` string
        - `device_fingerprint` string
        - `created_at` string
        - `updated_at` string
        - `provider_data` object
          - `provider_id` string
          - `transaction_id` string
          - `status` string
          - `score` string
          - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
          - `raw_response` object
          - `account_id` string
          - `status_detail` string
          - `three_d_secure_provider` string
          - `three_d_secure_setup_transaction_id` string
          - `strong_customer_authentication_exemptions` string[]
    - `payment_link_id` string
    - `subscription_code` unknown
    - `routing_rules` object
      - `condition` object
        - `id` integer
        - `name` unknown
        - `description` unknown
  - object
    - `id` string
    - `account_id` string
    - `description` string
    - `country` string
    - `status` string
    - `sub_status` string
    - `merchant_order_id` string
    - `created_at` string
    - `updated_at` string
    - `amount` object
      - `captured` integer
      - `currency` string
      - `refunded` integer
      - `value` integer
    - `checkout` object
      - `session` string
      - `sdk_action_required` boolean
    - `payment_method` object
      - `vaulted_token` string
      - `type` string
      - `vault_on_success` boolean
      - `token` string
      - `payment_method_detail` object
        - `card` object
          - `verify` boolean
          - `capture` boolean
          - `installments` integer
          - `installments_plan_id` unknown
          - `first_installment_deferral` integer
          - `installments_type` string
          - `installment_amount` unknown
          - `soft_descriptor` string
          - `authorization_code` string
          - `retrieval_reference_number` string
          - `acquirer_reference_number` string
          - `voucher` unknown
          - `card_data` object
            - `holder_name` string
            - `iin` string
            - `lfd` string
            - `number_length` integer
            - `security_code_length` integer
            - `brand` string
            - `issuer_name` string
            - `issuer_code` unknown
            - `category` string
            - `type` string
            - `three_d_secure` object
              - …
          - `stored_credentials` object
            - `reason` string
            - `usage` string
            - `subscription_agreement_id` string
            - `network_transaction_id` unknown
    - `customer_payer` object
      - `id` unknown
      - `merchant_customer_id` string
      - `first_name` string
      - `last_name` string
      - `gender` string
      - `date_of_birth` string
      - `email` string
      - `nationality` string
      - `ip_address` string
      - `device_fingerprint` unknown
      - `browser_info` object
        - `user_agent` string
        - `accept_header` string
        - `accept_content` unknown
        - `accept_browser` unknown
        - `color_depth` string
        - `screen_height` string
        - `screen_width` string
        - `javascript_enabled` unknown
        - `java_enabled` unknown
        - `browser_time_difference` unknown
        - `language` string
      - `document` object
        - `document_type` string
        - `document_number` string
      - `phone` object
        - `number` string
        - `country_code` string
      - `billing_address` object
        - `address_line_1` string
        - `address_line_2` string
        - `country` string
        - `state` string
        - `city` string
        - `zip_code` string
        - `neighborhood` unknown
      - `shipping_address` object
        - `address_line_1` string
        - `address_line_2` string
        - `country` string
        - `state` string
        - `city` string
        - `zip_code` string
        - `neighborhood` unknown
      - `merchant_customer_created_at` unknown
    - `additional_data` object
      - `airline` unknown
      - `order` object
        - `fee_amount` integer
        - `shipping_amount` integer
        - `tip_amount` unknown
        - `items` object[]
          - `id` string
          - `name` string
          - `quantity` integer
          - `unit_amount` integer
          - `category` string
          - `brand` string
          - `sku_code` string
          - `manufacture_part_number` string
          - `image_url` string
      - `seller_details` unknown
    - `taxes` unknown
    - `transactions` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` boolean
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `transactions_history` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` unknown
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `split` unknown[]
      - unknown
    - `workflow` string
    - `metadata` unknown[]
      - unknown
    - `fraud_screening` unknown
    - `payment_link_id` string
    - `subscription_code` unknown
    - `routing_rules` object
      - `condition` object
        - `id` integer
        - `name` unknown
        - `description` unknown
  - object
    - `id` string
    - `account_id` string
    - `description` string
    - `country` string
    - `status` string
    - `sub_status` string
    - `merchant_order_id` string
    - `created_at` string
    - `updated_at` string
    - `amount` object
      - `captured` integer
      - `currency` string
      - `refunded` integer
      - `value` integer
    - `checkout` object
      - `session` string
      - `sdk_action_required` boolean
    - `payment_method` object
      - `vaulted_token` string
      - `type` string
      - `vault_on_success` boolean
      - `token` string
      - `payment_method_detail` object
        - `card` object
          - `verify` boolean
          - `capture` boolean
          - `installments` integer
          - `installments_plan_id` unknown
          - `first_installment_deferral` integer
          - `installments_type` string
          - `installment_amount` unknown
          - `soft_descriptor` string
          - `authorization_code` string
          - `retrieval_reference_number` string
          - `acquirer_reference_number` string
          - `voucher` unknown
          - `card_data` object
            - `holder_name` string
            - `iin` string
            - `lfd` string
            - `number_length` integer
            - `security_code_length` integer
            - `brand` string
            - `issuer_name` string
            - `issuer_code` unknown
            - `category` string
            - `type` string
            - `three_d_secure` object
              - …
          - `stored_credentials` object
            - `reason` string
            - `usage` string
            - `subscription_agreement_id` string
            - `network_transaction_id` unknown
    - `customer_payer` object
      - `id` unknown
      - `merchant_customer_id` string
      - `first_name` string
      - `last_name` string
      - `gender` string
      - `date_of_birth` string
      - `email` string
      - `nationality` string
      - `ip_address` string
      - `device_fingerprint` unknown
      - `browser_info` object
        - `user_agent` string
        - `accept_header` string
        - `accept_content` unknown
        - `accept_browser` unknown
        - `color_depth` string
        - `screen_height` string
        - `screen_width` string
        - `javascript_enabled` unknown
        - `java_enabled` unknown
        - `browser_time_difference` unknown
        - `language` string
      - `document` object
        - `document_type` string
        - `document_number` string
      - `phone` object
        - `number` string
        - `country_code` string
      - `billing_address` object
        - `address_line_1` string
        - `address_line_2` string
        - `country` string
        - `state` string
        - `city` string
        - `zip_code` string
        - `neighborhood` unknown
      - `shipping_address` object
        - `address_line_1` string
        - `address_line_2` string
        - `country` string
        - `state` string
        - `city` string
        - `zip_code` string
        - `neighborhood` unknown
      - `merchant_customer_created_at` unknown
    - `additional_data` unknown
    - `taxes` unknown
    - `transactions` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` boolean
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `transactions_history` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` unknown
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `split` unknown[]
      - unknown
    - `workflow` string
    - `metadata` unknown[]
      - unknown
    - `fraud_screening` unknown
    - `payment_link_id` string
    - `subscription_code` unknown
    - `routing_rules` object
      - `condition` object
        - `id` integer
        - `name` unknown
        - `description` unknown
  - object
    - `id` string
    - `account_id` string
    - `description` string
    - `country` string
    - `status` string
    - `sub_status` string
    - `merchant_order_id` string
    - `created_at` string
    - `updated_at` string
    - `amount` object
      - `captured` integer
      - `currency` string
      - `refunded` integer
      - `value` integer
    - `checkout` object
      - `session` string
      - `sdk_action_required` boolean
    - `payment_method` object
      - `vaulted_token` string
      - `type` string
      - `vault_on_success` boolean
      - `token` string
      - `payment_method_detail` object
        - `card` object
          - `verify` boolean
          - `capture` boolean
          - `installments` integer
          - `installments_plan_id` unknown
          - `first_installment_deferral` integer
          - `installments_type` string
          - `installment_amount` unknown
          - `soft_descriptor` string
          - `authorization_code` string
          - `retrieval_reference_number` string
          - `acquirer_reference_number` string
          - `voucher` unknown
          - `card_data` object
            - `holder_name` string
            - `iin` string
            - `lfd` string
            - `number_length` integer
            - `security_code_length` integer
            - `brand` string
            - `issuer_name` string
            - `issuer_code` unknown
            - `category` string
            - `type` string
            - `three_d_secure` object
              - …
          - `stored_credentials` object
            - `reason` string
            - `usage` string
            - `subscription_agreement_id` string
            - `network_transaction_id` unknown
    - `customer_payer` object
      - `id` unknown
      - `merchant_customer_id` string
      - `first_name` string
      - `last_name` string
      - `gender` string
      - `date_of_birth` string
      - `email` string
      - `nationality` string
      - `ip_address` string
      - `device_fingerprint` unknown
      - `browser_info` object
        - `user_agent` string
        - `accept_header` string
        - `accept_content` unknown
        - `accept_browser` unknown
        - `color_depth` string
        - `screen_height` string
        - `screen_width` string
        - `javascript_enabled` unknown
        - `java_enabled` unknown
        - `browser_time_difference` unknown
        - `language` string
      - `document` object
        - `document_type` string
        - `document_number` string
      - `phone` object
        - `number` string
        - `country_code` string
      - `billing_address` object
        - `address_line_1` string
        - `address_line_2` string
        - `country` string
        - `state` string
        - `city` string
        - `zip_code` string
        - `neighborhood` unknown
      - `shipping_address` object
        - `address_line_1` string
        - `address_line_2` string
        - `country` string
        - `state` string
        - `city` string
        - `zip_code` string
        - `neighborhood` unknown
      - `merchant_customer_created_at` unknown
    - `additional_data` unknown
    - `taxes` unknown
    - `transactions` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` boolean
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `transactions_history` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` unknown
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `split` unknown[]
      - unknown
    - `workflow` string
    - `metadata` unknown[]
      - unknown
    - `fraud_screening` unknown
    - `payment_link_id` string
    - `subscription_code` unknown
    - `routing_rules` object
      - `condition` object
        - `id` integer
        - `name` unknown
        - `description` unknown
  - object
    - `id` string
    - `account_id` string
    - `description` string
    - `country` string
    - `status` string
    - `sub_status` string
    - `merchant_order_id` string
    - `created_at` string
    - `updated_at` string
    - `amount` object
      - `captured` integer
      - `currency` string
      - `refunded` integer
      - `value` integer
    - `checkout` object
      - `session` string
      - `sdk_action_required` boolean
    - `payment_method` object
      - `vaulted_token` string
      - `type` string
      - `vault_on_success` boolean
      - `token` string
      - `payment_method_detail` object
        - `card` object
          - `verify` boolean
          - `capture` boolean
          - `installments` integer
          - `installments_plan_id` unknown
          - `first_installment_deferral` integer
          - `installments_type` string
          - `installment_amount` unknown
          - `soft_descriptor` string
          - `authorization_code` string
          - `retrieval_reference_number` string
          - `acquirer_reference_number` string
          - `voucher` unknown
          - `card_data` object
            - `holder_name` string
            - `iin` string
            - `lfd` string
            - `number_length` integer
            - `security_code_length` integer
            - `brand` string
            - `issuer_name` string
            - `issuer_code` unknown
            - `category` string
            - `type` string
            - `three_d_secure` object
              - …
          - `stored_credentials` object
            - `reason` string
            - `usage` string
            - `subscription_agreement_id` string
            - `network_transaction_id` unknown
    - `customer_payer` object
      - `id` unknown
      - `merchant_customer_id` string
      - `first_name` string
      - `last_name` string
      - `gender` string
      - `date_of_birth` string
      - `email` string
      - `nationality` string
      - `ip_address` string
      - `device_fingerprint` unknown
      - `browser_info` object
        - `user_agent` string
        - `accept_header` string
        - `accept_content` unknown
        - `accept_browser` unknown
        - `color_depth` string
        - `screen_height` string
        - `screen_width` string
        - `javascript_enabled` unknown
        - `java_enabled` unknown
        - `browser_time_difference` unknown
        - `language` string
      - `document` object
        - `document_type` string
        - `document_number` string
      - `phone` object
        - `number` string
        - `country_code` string
      - `billing_address` object
        - `address_line_1` string
        - `address_line_2` string
        - `country` string
        - `state` string
        - `city` string
        - `zip_code` string
        - `neighborhood` unknown
      - `shipping_address` object
        - `address_line_1` string
        - `address_line_2` string
        - `country` string
        - `state` string
        - `city` string
        - `zip_code` string
        - `neighborhood` unknown
      - `merchant_customer_created_at` unknown
    - `additional_data` unknown
    - `taxes` unknown
    - `transactions` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` boolean
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `merchant_advice_code` string
      - `merchant_advice_code_message` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `merchant_advice_code` string
        - `merchant_advice_code_message` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `transactions_history` object
      - `id` string
      - `type` string
      - `status` string
      - `category` string
      - `amount` integer
      - `provider_id` string
      - `payment_method` object
        - `vaulted_token` string
        - `type` string
        - `vault_on_success` boolean
        - `token` string
        - `detail` object
          - `card` object
            - `verify` unknown
            - `capture` boolean
            - `installments` integer
            - `installments_plan_id` unknown
            - `first_installment_deferral` integer
            - `installments_type` string
            - `installment_amount` unknown
            - `soft_descriptor` string
            - `authorization_code` string
            - `retrieval_reference_number` string
            - `acquirer_reference_number` string
            - `voucher` unknown
            - `card_data` object
              - …
            - `stored_credentials` object
              - …
      - `response_code` string
      - `response_message` string
      - `reason` unknown
      - `description` string
      - `merchant_reference` string
      - `merchant_advice_code` string
      - `merchant_advice_code_message` string
      - `provider_data` object
        - `id` string
        - `transaction_id` string
        - `account_id` string
        - `status` string
        - `status_detail` string
        - `merchant_advice_code` string
        - `merchant_advice_code_message` string
        - `response_message` string
        - `response_code` string
        - `iso8583_response_code` string
        - `iso8583_response_message` string
        - `raw_request` object — Obfuscated copy of the request Yuno sent to the provider. Only returned for allowlisted organizations.
        - `raw_response` object
          - `amount` object
            - `currency` string
            - `value` integer
          - `merchantAccount` string
          - `reference` string
          - `status` string
        - `third_party_transaction_id` string
        - `third_party_account_id` string
      - `created_at` string
      - `updated_at` string
    - `split` unknown[]
      - unknown
    - `workflow` string
    - `metadata` unknown[]
      - unknown
    - `fraud_screening` unknown
- … truncated; see the full OpenAPI document linked below

## Other responses

- `400` — 400
- `401` — 401
- `403` — 403

---

[API](https://skmtc.net/y/apis/ai-caller.md) · [All operations](https://skmtc.net/y/apis/ai-caller/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/y/ai-caller/versions/05b629819b49/schema)
