Skip to content

Suggested

API Dashboard
GET /payment-attempts/{id}

Retrieves a payment attempt by ID.

GET/payment-attempts/{id}
Get payment-attempt

Bearer access token returned by the authentication endpoint.

The API key used for authentication when making requests to the API Gateway.

API version selector for Conomy endpoints. Use 24-04-2025 for the current version.

Identifies the application making the request.

Unique identifier for the payment-attempt.

idstringrequired

Unique identifier for the internal service.

externalIdstringrequired

External reference identifier for integrations.

identityIdstringrequired

Identifier linking the transaction to a specific user or organization.

identityExternalIdstring

External reference identifier for the identity associated with the transaction.

accountNumberstringrequired

The account number involved in the transaction.

totalAmountstringrequired

The total amount of the transaction.

currencystringrequired

Specifies the currency used, following the ISO 4217 standard for fiat currencies (e.g., CLP, ARS, MXN). Go to the currencies page for the complete list of supported values.

descriptionstring

A brief description of the transaction.

productstring

The product or service related to the transaction. purchaseCurrency:Currency

statusstringrequired

The current status of the transaction (e.g., PENDING, AUTHORIZED, CAPTURED, ATTEMPT, REFUNDED).

typestringrequired
PURCHASEPayment initiated by an external customer for goods or services.
TOPUP_ACCOUNTA deposit of funds into an internal account
WITHDRAWAL_ACCOUNTFunds withdrawn from an internal account to an external bank account.
P2PPull of funds from another internal account.
COLLECTPull of funds from another internal account.
FEEFee charged or collected within the system.
REMITTANCECrossborder payment from an internal or external account to receipient in another country.
purchaseAmountstring

The amount paid in the transaction.

purchaseCurrencystring

Specifies the currency used, following the ISO 4217 standard for fiat currencies (e.g., CLP, ARS, MXN). Go to the currencies page for the complete list of supported values.

feesobject[]

A list of fees associated with the transaction.

createdAtstringrequired

Timestamp indicating when the transaction was created.

updatedAtstringrequired

Timestamp indicating the last update to the transaction.

expiresAtstring

Timestamp indicating when the transaction expires, if applicable.

capturedAtstring

Timestamp indicating when the transaction was captured.

authorizedAtstring

Timestamp indicating when the transaction was authorized.

refundedAtstring

Timestamp indicating when the transaction was refunded, if applicable.

originsoneOf[]

A list of sources for the transaction.

destinationsoneOf[]

A list of destinations for the transaction.

settlementstring

Settlement period for the transaction.

Request
GET /sandbox/payment-attempts/{id} HTTP/1.1
Host: api.conomyhq.com
Authorization: Bearer {ACCESS_TOKEN}
x-api-key: {YOUR_API_KEY}
conomyhq-api-version: 24-04-2025
User-Agent: MyApp/1.0
Response
{
  "id": "string",
  "externalId": "string",
  "identityId": "string",
  "identityExternalId": "string",
  "accountNumber": "string",
  "totalAmount": "string",
  "currency": "string",
  "description": "string",
  "product": "string",
  "status": "string"
}