This endpoint serves to retrieve the comprehensive details of a specific payment by its unique ID. By fetching these details, users can inspect the status, the creation and update dates, making it a critical tool for monitoring and verifying bulk payment progress.

curl 'https://api.demo.getontop.com/payment-agent/payments/231' \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxx'

{
  "id": 231,
  "description": "Worker n1",
  "amount": 10.00,
  "worker_email": "[email protected]",
  "paylist_id": 23,
  "idempotence_key": "2ffa2c706ab068dce719b38d1a795544",
  "creation_date": "2023-09-28T14:48:46.771546Z",
  "update_date": "2023-09-28T14:48:48.212830Z",
  "status": "SUCCESS",
  "cause": null
}

Language
Click Try It! to start a request and see the response here!