Skip to main content

Overview

You can send a paymentDetails object inside originDetails and/or destinationDetails when creating a transaction. This page describes suggested structures by payment method so the client knows what can be sent. Nothing is enforced: the API accepts any shape and any extra fields; use these as a reference only.
  • Where: originDetails.paymentDetails, destinationDetails.paymentDetails
  • Optional: Yes. Omit if you don’t need payment-level details.
  • Custom fields: Any additional keys are stored as-is. You are not restricted to the fields below.

Unknown Party (Graph Visualization)

When origin or destination is not an entity in gu1 (you do not send originEntityId/originExternalId or destinationEntityId/destinationExternalId), you can still send identifying data so that network graphs show a single β€œpseudo” node per unknown party instead of hiding the flow. The graph uses the first matching identifier below (priority order). Values are normalized (alphanumeric only) before grouping: Not used for pseudo-node grouping (too weak / ambiguous): bin, cardLast4 by themselves. Send cardFingerprint for card flows when you want graph grouping without a linked entity. These fields are optional and for internal use only (graph visualization). They are not required for creating the transaction. Linking a real entity by document vs graph-only: to auto-link a person/company to the transaction (and optionally fill name/country from the entity), send originTaxId / destinationTaxId on the root body of the create request (third fallback after *EntityId and *ExternalId β€” see Create transaction β€” origin/destination fields). A taxId only inside originDetails / destinationDetails does not run that link; it only helps the graph for unknown parties.

Card (CARD)

Suggested fields when paymentMethod is CARD (or for card-related context):

PIX (Brasil)

Suggested fields for PIX:

Bank Transfer (ACH, Wire, SEPA, TED)

Generic bank transfer suggested fields:

CBU / CVU (Argentina)

Suggested fields for Argentine CBU/CVU:

SPEI (MΓ©xico)

Suggested fields for SPEI:

PSE (Colombia)

Suggested fields for PSE:

DEBIN (Argentina)

Suggested fields for DEBIN:

Cryptocurrency

Suggested fields for crypto payments:

Cash

Suggested fields for cash:

Check

Suggested fields for check payments:

Money Order

Suggested fields:

E-Wallet / Digital Wallet

Suggested fields for wallets (PayPal, Mercado Pago, etc.):

Other / Generic

For any other method you can send: Plus any custom keys you need.

Examples

Origin with card paymentDetails:
Destination with PIX paymentDetails:
Mixing suggested + custom fields:
All of the above are accepted. The API does not restrict keys inside paymentDetails.

See Also