RocketKOR

COMING SOON

List Card Alerts

Retrieve a list of alerts for an issued card. To retrieve a list of alerts, you will need:

  • ID of the integrated Financial Account linked to the issued card

Endpoint

GET /v1/integrated-cards/{financialAccountId}/alerts

Authorization Header

Authorization: Bearer <access_token>

Path Parameters

financialAccountId  REQUIRED

string (UUID)

ID of the integrated Financial Account linked to the issued card.

Request Body

None

Returns

Returns an array of Card Alert objects.

SAMPLE RESPONSE

				
					[
  {
    "financialAccountId": "7d08a89d-2ac5-4ed3-a6ca-ad7c974c994e",
    "useEmail": true,
    "email": "user@example.com",
    "useContactNumber": true,
    "mobileContactNumber": "2821234567",
    "type": "CREDIT_TRANSACTION_POSTED",
    "merchantCategoryCodes": [
      "6530"
    ],
    "threshold": {
      "type": "GREATER_THAN_OR_EQUALS_TO",
      "amount": "100.99"
    },
    "notifyOption": "PARENT_CARD",
        "id": "9671d896-ec04-4796-9864-0d165a5dda83",
    "createdBy": {
    "id": "6a545f07-cefa-47ad-bede-9489ac1b65fd",
      "type": "service-account"
    },
    "createdAt": "2023-02-13T02:04:19.161Z",
    "active": true
  },
  {...},
  {...}
]