GET
/
customers
/
{customer_id}
/
transactions
curl --request GET \
  --url https://api.onepay.la/v1/customers/{customer_id}/transactions \
  --header 'Authorization: Bearer <token>'
{
   "data":[
      {
         "id":"0194b42f-5515-7245-b9f4-193c92f37b8c",
         "type":"deposit",
         "amount":1000,
         "label":"$1.000",
         "concept":"Transferencia de fondos a Andres Silva G\u00f3mez, enviado por Andres Silva Gomez",
         "subtype":"WITHDRAW",
         "confirmed":true,
         "node_type":"CashoutLine",
         "created_at":"2025-01-29T22:29:48.000000Z",
         "node":{
            "id":"9e16627d-1eb9-46c4-ba19-b229ea77d68e",
            "customer_id":"9957858a-c2f1-4f18-a5c2-216b4127e278",
            "account_id":"9d005522-fad4-44c2-9012-1dbb871322b5",
            "is_test":false,
            "amount":1000,
            "status":"processed",
            "scheduled_at":null,
            "created_at":"2025-01-29T22:29:48.000000Z",
            "external_id":null,
            "method":"TURBO"
         }
      },
      {
         "id":"0194ad6d-2464-7215-a9a6-8e88d9a5a09d",
         "type":"deposit",
         "amount":1000,
         "label":"$1.000",
         "concept":"Transferencia de fondos",
         "subtype":"WITHDRAW",
         "confirmed":true,
         "node_type":"CashoutLine",
         "created_at":"2025-01-28T14:59:58.000000Z",
         "node":{
            "id":"9e13bea1-e7fd-40be-b2e7-35098504268f",
            "customer_id":"9957858a-c2f1-4f18-a5c2-216b4127e278",
            "account_id":"9d005522-fad4-44c2-9012-1dbb871322b5",
            "is_test":false,
            "amount":1000,
            "status":"processed",
            "scheduled_at":null,
            "created_at":"2025-01-28T14:59:58.000000Z",
            "external_id":null,
            "method":"ACH"
         }
      },
   ],
   "current_page":1,
   "from":1,
   "last_page":65,
   "per_page":20,
   "to":20,
   "total":1291
}
customer_id
string
required

ID único del cliente que deseas obtener

{
   "data":[
      {
         "id":"0194b42f-5515-7245-b9f4-193c92f37b8c",
         "type":"deposit",
         "amount":1000,
         "label":"$1.000",
         "concept":"Transferencia de fondos a Andres Silva G\u00f3mez, enviado por Andres Silva Gomez",
         "subtype":"WITHDRAW",
         "confirmed":true,
         "node_type":"CashoutLine",
         "created_at":"2025-01-29T22:29:48.000000Z",
         "node":{
            "id":"9e16627d-1eb9-46c4-ba19-b229ea77d68e",
            "customer_id":"9957858a-c2f1-4f18-a5c2-216b4127e278",
            "account_id":"9d005522-fad4-44c2-9012-1dbb871322b5",
            "is_test":false,
            "amount":1000,
            "status":"processed",
            "scheduled_at":null,
            "created_at":"2025-01-29T22:29:48.000000Z",
            "external_id":null,
            "method":"TURBO"
         }
      },
      {
         "id":"0194ad6d-2464-7215-a9a6-8e88d9a5a09d",
         "type":"deposit",
         "amount":1000,
         "label":"$1.000",
         "concept":"Transferencia de fondos",
         "subtype":"WITHDRAW",
         "confirmed":true,
         "node_type":"CashoutLine",
         "created_at":"2025-01-28T14:59:58.000000Z",
         "node":{
            "id":"9e13bea1-e7fd-40be-b2e7-35098504268f",
            "customer_id":"9957858a-c2f1-4f18-a5c2-216b4127e278",
            "account_id":"9d005522-fad4-44c2-9012-1dbb871322b5",
            "is_test":false,
            "amount":1000,
            "status":"processed",
            "scheduled_at":null,
            "created_at":"2025-01-28T14:59:58.000000Z",
            "external_id":null,
            "method":"ACH"
         }
      },
   ],
   "current_page":1,
   "from":1,
   "last_page":65,
   "per_page":20,
   "to":20,
   "total":1291
}