RocketKOR

COMING SOON

Retrieve a Card Alert

Retrieve details for an alert created for an issued card. To retrieve an alert, you will need:

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

Endpoint

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

Authorization Header

Authorization: Bearer <access_token>

Path Parameters

financialAccountId  REQUIRED

string (UUID)

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

id  REQUIRED

string (UUID)

ID of the alert.

Request Body

None

Returns

Returns the Card Alert object. This object contains the alert details.

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
}