Operations
Disputes, Loans and NeroCards
Use these endpoints for reporting and support workflows.
DisputesNeroCardsLoans
Disputes
GET
/disputesLists disputes for the merchant or selected connected account.
true,
CURLOPT_HTTPHEADER => [
'Authorization: Bearer ' . $secretKey,
'Accept: application/json',
],
]);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
echo $response;
{
"success": true,
"data": [
{
"id": 9101,
"status": "open",
"amount": "15.99",
"currency": "GBP",
"transaction_id": 6636598,
"reason": "customer_inquiry",
"created_at": "2026-04-22T10:00:00Z"
}
]
}
Loans and NeroCards
| Method | Endpoint | Purpose |
|---|---|---|
| GET | /loans | List merchant finance records where available. |
| GET | /nerocards | List NeroCard summaries where available. |
true,
CURLOPT_HTTPHEADER => [
'Authorization: Bearer ' . $secretKey,
'Accept: application/json',
],
]);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
echo $response;
{
"success": true,
"data": [
{
"id": "card_nero_123",
"status": "active",
"currency": "GBP",
"available": "25.00",
"last4": "4242"
}
]
}
true,
CURLOPT_HTTPHEADER => [
'Authorization: Bearer ' . $secretKey,
'Accept: application/json',
],
]);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
echo $response;
{
"success": true,
"data": [
{
"id": 4001,
"status": "active",
"currency": "GBP",
"balance": "250.00"
}
]
}