Skip to content

Suggested

API Dashboard

FundamentalsGlossary

Glossary

Shared vocabulary used across the conomy_hq platform — entities, transaction types, statuses, and roles.

Shared vocabulary used across the conomy_hq platform.


TermDefinition
IdentityThe entity initiating a transaction — a USER or an ORGANIZATION. See Identities.
AccountAn internal balance held inside the platform. Every payment has at least one ACCOUNT as origin or destination. See Accounts.
CustomerThe end user whose money moves through the platform. Customers persist across payments and accumulate documentation over time. See Customers.
PaymentA single movement of funds with an origin, a destination, a type, and a product. Payments transition through a lifecycle of statuses. See Payment structure.
Payment attemptA pre-created payment reservation that has not yet received funds. Common on rails where the payer completes the transfer asynchronously (CVU, PIX).
TransactionGeneric term for any unit of funds movement on the platform. A Refund is a transaction; a Topup is a transaction. Used interchangeably with Payment in most contexts.

TypeDirectionPurpose
TOPUP_ACCOUNTPay-inAdd funds to an internal account from an external rail.
WITHDRAWAL_ACCOUNTPay-outSend funds from an internal account to an external rail.
REMITTANCECross-borderSend funds from one country to another, typically with FX.
PURCHASEPay-inCollect funds from an end user — used with checkout and payment links.
P2PInternalTransfer between two internal accounts.
COLLECTInternalAggregate funds across multiple internal accounts into one.
FEEInternalFee line item attached to a parent transaction.
REFUNDReversalReverses a previously settled payment. Child transaction linked to a parent via parentPaymentId.

StatusMeaning
CREATEDPayment was created. No funds have moved yet.
AUTHORIZEDFunds are reserved but not captured. Applies to flows that require pre-authorization.
CAPTUREDFunds were captured from the origin.
RECEIVEDThe provider confirmed the transfer on their end.
SETTLEDFunds are fully reconciled and available in the destination account.
REQUIRES_REVIEWPayment is blocked pending compliance documentation. See Review flow.
EXPIREDPayment was not completed within its expiry window.
FAILEDPayment failed and will not settle.
DISPUTEDA dispute has been opened against the payment.
REVERSEDPayment was canceled before settlement.

TermDefinition
Operation levelA Customer tier — INACTIVEBASICSTANDARDFULL — that controls per-transaction amount limits and the review gate. See Customer operation levels.
Documented customerA customer with at least one APPROVED document. Documented customers bypass the review gate.
Review gateThe REQUIRES_REVIEW state applied when a transaction crosses its compliance threshold and the customer is not yet documented.
OriginanteThe payer initiating a topup from their bank. The originante’s identity data (name, document number) is captured on inbound transfers and surfaced on the payment.
KYCKnow Your Customer — identity verification required before a customer is considered documented.

TermDefinition
RailAn external payment network — PIX, CVU, ACH, SEPA, etc. Each rail is represented as a node type in the API.
NodeAn element of a payment’s origins or destinations array. Every node has a type (the rail identifier) and a rail-specific sub-object. See Origins and destinations.
Payment nodeSynonym for node.
Pay-in railA rail used to bring funds into the platform (CVU, PIX, ETPAY, etc.).
Pay-out railA rail used to send funds out of the platform (BANK_ACCOUNT, SPEI, ACH, etc.).
Static CVUA fixed CVU code assigned to an identity. Topups to this code require manual reconciliation against an account.
Dynamic CVUA unique CVU code allocated per payment attempt. Topups to this code auto-match the attempt. See CVU.

TermDefinition
ProductA currency pair in the form purchaseCurrency:currency (for example ARS:USD). Identifies the FX leg of a payment.
TenantA client on the platform. Every API call is scoped to a tenant via clientId.
WebhookHTTP callback the platform sends to your endpoint when a transaction changes state. See Webhooks.
IdempotencyInbound rail notifications are deduplicated internally by (provider, providerReference) so the same external event never produces two payments. No client-side idempotency header is required or supported on payment creation.