List payments for a store
curl --request GET \
--url https://api.confiopagos.com/v1/stores/{store}/payments \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.confiopagos.com/v1/stores/{store}/payments"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.confiopagos.com/v1/stores/{store}/payments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.confiopagos.com/v1/stores/{store}/payments",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.confiopagos.com/v1/stores/{store}/payments"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.confiopagos.com/v1/stores/{store}/payments")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.confiopagos.com/v1/stores/{store}/payments")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"payments": [
{
"amountCents": 5000000,
"currencyCode": "COP",
"title": "Juguete",
"description": "Juguete increíble",
"buyer": {
"firstName": "Julián",
"phoneNumber": "+573215786325",
"lastName": "Pérez",
"email": "santiago@example.com"
},
"name": "stores/01JNRRDZDPH40DB2YRW329BFXM/payments/01JNRVWWHH68E76V3TMFFT6GHJ",
"status": "AWAITING_PAYMENT",
"organization": "organizations/01JNRR1NY8MDX4XCGG0N4F06X3",
"url": "https://checkout.confiopagos.com/p/01JNV8CSHNN933B09T5MTNK89V",
"createTime": "2024-01-15T10:30:00Z",
"updateTime": "2024-01-15T10:30:00Z",
"expireTime": "2024-01-18T10:30:00Z",
"correlationId": "36285414",
"mediaAssets": [
"https://fastly.picsum.photos/id/1074/1024/1024.jpg?hmac=usAeJI_o3wzbLAca-PMBgHQXXhSoMNP5cvoktlhiUzY",
"https://fastly.picsum.photos/id/506/1024/1024.jpg?hmac=Wa93nuNDFEXWB_Fg4n2vcYT3sGcW7UBTjOAic46R9Gw",
"https://fastly.picsum.photos/id/343/1024/1024.jpg?hmac=WC3PsYGjbqnsQhfu1J1l3PeAzmsGEiZPISXAenRc2Qc"
],
"enabledPaymentMethods": [
"PSE",
"CARD",
"NEQUI",
"BANCOLOMBIA"
],
"paymentType": "PRODUCT",
"redirectUri": "https://example.com/payment-status",
"courier": "Coordinadora",
"trackingNumber": "453265",
"disableBuyerNotification": false,
"discountPercentage": 0.1,
"discountSource": "ty_page_cod_conversion"
}
],
"nextPageToken": "<string>"
}List payments for a store
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>'import requests
url = "https://api.confiopagos.com/v1/stores/{store}/payments"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.confiopagos.com/v1/stores/{store}/payments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.confiopagos.com/v1/stores/{store}/payments",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.confiopagos.com/v1/stores/{store}/payments"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.confiopagos.com/v1/stores/{store}/payments")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.confiopagos.com/v1/stores/{store}/payments")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"payments": [
{
"amountCents": 5000000,
"currencyCode": "COP",
"title": "Juguete",
"description": "Juguete increíble",
"buyer": {
"firstName": "Julián",
"phoneNumber": "+573215786325",
"lastName": "Pérez",
"email": "santiago@example.com"
},
"name": "stores/01JNRRDZDPH40DB2YRW329BFXM/payments/01JNRVWWHH68E76V3TMFFT6GHJ",
"status": "AWAITING_PAYMENT",
"organization": "organizations/01JNRR1NY8MDX4XCGG0N4F06X3",
"url": "https://checkout.confiopagos.com/p/01JNV8CSHNN933B09T5MTNK89V",
"createTime": "2024-01-15T10:30:00Z",
"updateTime": "2024-01-15T10:30:00Z",
"expireTime": "2024-01-18T10:30:00Z",
"correlationId": "36285414",
"mediaAssets": [
"https://fastly.picsum.photos/id/1074/1024/1024.jpg?hmac=usAeJI_o3wzbLAca-PMBgHQXXhSoMNP5cvoktlhiUzY",
"https://fastly.picsum.photos/id/506/1024/1024.jpg?hmac=Wa93nuNDFEXWB_Fg4n2vcYT3sGcW7UBTjOAic46R9Gw",
"https://fastly.picsum.photos/id/343/1024/1024.jpg?hmac=WC3PsYGjbqnsQhfu1J1l3PeAzmsGEiZPISXAenRc2Qc"
],
"enabledPaymentMethods": [
"PSE",
"CARD",
"NEQUI",
"BANCOLOMBIA"
],
"paymentType": "PRODUCT",
"redirectUri": "https://example.com/payment-status",
"courier": "Coordinadora",
"trackingNumber": "453265",
"disableBuyerNotification": false,
"discountPercentage": 0.1,
"discountSource": "ty_page_cod_conversion"
}
],
"nextPageToken": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The unique identifier of the store.
Example:
"waxhsjr47zsl"
Query Parameters
The maximum number of payments to return. Default is 50, max is 1000.
Example:
"20"
A page token received from a previous ListPayments call for pagination.
⌘I