Logo
Get supportSee a Demo
HomeAPI Reference
HomeAPI Reference
    • Getting Started
    • Authentication
    • Usage Quotas
    • Notifications
    • Attributions
  • API Reference
Get supportSee a Demo
API ReferenceTransactions

POST
/v2/issuers/:organizationId/fraud
POST
/v2/issuers/:organizationId/fraud
1curl -X POST https://rewards-api.getkard.com/v2/issuers/organization-123/fraud \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "data": [
6 {
7 "id": "myTxnId12345",
8 "type": "fraudulentTransaction",
9 "attributes": {
10 "userId": "userId123"
11 }
12 }
13 ]
14}'
Try it
1{
2 "data": [
3 {
4 "id": "myTxnId123",
5 "type": "fraudulentTransaction",
6 "attributes": {
7 "userId": "user123"
8 }
9 }
10 ]
11}
Was this page helpful?
Previous

Create Audits

Next
Built with
Call this endpoint to flag a submitted transaction as fraudulent. This will prevent it from being rewarded.<br/> <b>Required scopes:</b>&nbsp;&nbsp;`transaction:write`<br/> <b>Note:</b> `Maximum of 500 fraudulent transactions can be created per request`.
Flag Fraudulent Transactions

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path Parameters

organizationIdstringRequired
Your issuer organization ID, provided by Kard

Request

This endpoint expects an object.
datalist of objectsRequired
List of fraudulent transactions to report

Response

This endpoint returns an object.
datalist of objects

Errors

Call this endpoint to flag a submitted transaction as fraudulent. This will prevent it from being rewarded.

Required scopes:  transaction:write
Note: Maximum of 500 fraudulent transactions can be created per request.