Skip to content

Suggested

API Dashboard
GET /payment-attempts

Lists payment attempts with filtering and pagination options.

GET/payment-attempts
Get payment-attempts

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.

identityId

account number

Filters payment attempts by payment type.

PURCHASETOPUP_ACCOUNTWITHDRAWAL_ACCOUNTP2PCOLLECTFEEREMITTANCE

start date filter

start date filter

Specifies the maximum number of items to return in a single request.

A cursor indicating the position of the last retrieved item.

dataobject[]required

An array containing the list of retrieved payment-attemps based on the provided pagination parameters.

paginationobjectrequired

An object containing pagination metadata that helps navigate through the dataset.

Request
GET /sandbox/payment-attempts 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
{
  "data": [
    {
      "id": "string",
      "externalId": "string",
      "identityId": "string",
      "accountNumber": "string",
      "totalAmount": "string",
      "currency": "string",
      "status": "string",
      "type": "PURCHASE",
      "createdAt": "string",
      "updatedAt": "string"
    }
  ],
  "pagination": {
    "pagination": {
      "count": 0,
      "next": 0,
      "previous": 0,
      "total": 0
    },
    "results": [
      {}
    ]
  }
}