Skip to main content
GET
/
v1
/
stores
/
{store}
/
payments
List payments for a store
curl --request GET \
  --url https://api.confiopagos.com/v1/stores/{store}/payments \
  --header 'Authorization: Bearer <token>'
{
  "payments": [
    {
      "amountCents": 5000000,
      "currencyCode": "COP",
      "title": "Juguete",
      "description": "Juguete increíble",
      "buyer": {
        "firstName": "Santiago",
        "phoneNumber": "+573215786325",
        "email": "[email protected]"
      },
      "name": "stores/01JNRRDZDPH40DB2YRW329BFXM/payments/01JNRVWWHH68E76V3TMFFT6GHJ",
      "status": "AWAITING_PAYMENT",
      "organization": "organizations/01JNRR1NY8MDX4XCGG0N4F06X3",
      "url": "https://checkout.confiopagos.com/p/01JNV8CSHNN933B09T5MTNK89V",
      "correlationId": "36285414",
      "enabledPaymentMethods": [
        "PSE",
        "CARD",
        "NEQUI",
        "BANCOLOMBIA"
      ],
      "paymentType": "PRODUCT",
      "redirectUri": "https://example.com/payment-status",
      "courier": "Coordinadora",
      "trackingNumber": "453265",
      "disableBuyerNotification": false
    }
  ],
  "nextPageToken": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

store
string
required

The unique identifier of the store.

Example:

"waxhsjr47zsl"

Query Parameters

pageSize
string

The maximum number of payments to return. Default is 50, max is 1000.

Example:

"20"

pageToken
string

A page token received from a previous ListPayments call for pagination.

Response

200 - application/json

Successfully fetched payments.

payments
object[]
required

List of payments

nextPageToken
string

Token for retrieving the next page of results