cURL
curl --request GET \ --url https://apis.hopnow.io/v1/accounts/{account_id}/payins \ --header 'Authorization: Bearer <token>'
{ "items": [ { "id": "<string>", "object": "<string>", "account_id": "<string>", "amount": "<string>", "currency": "<string>", "status": "<string>", "initiated_at": "<string>", "created": "<string>" } ], "page": 123, "size": 123, "total": 123, "pages": 123 }
Retrieve a paginated list of incoming payments
acc_
pending
processing
completed
failed
Show Payin Fields
pin_
"payin"
{ "items": [ { "id": "pin_1234567890abcdef", "object": "payin", "account_id": "acc_1234567890abcdef", "amount": "1000.00", "currency": "USD", "network": null, "amount_in_usd": "1000.00", "status": "completed", "provider_reference_id": "trace_123", "initiated_at": "2024-01-15T10:00:00Z", "completed_at": "2024-01-15T10:05:00Z", "failed_at": null, "failed_reason": null, "created": "2024-01-15T10:00:00Z", "updated": "2024-01-15T10:05:00Z" } ], "page": 1, "size": 10, "total": 1, "pages": 1 }