Card Whitelist
Last updated
Last updated
GET /api/whitelist/card HTTP/1.1
Host: localhost:8080
Accept: */*
{
"items": [
{
"binCode": "424242",
"cooldownExpiresAt": "2026-01-29T13:12:50.880Z",
"createdAt": "2023-11-21T02:00:54.465Z",
"id": "cwl_550e8400-e29b-41d4-a716-446655440000",
"last4": "4242"
}
],
"nextCursor": "text"
}POST /api/whitelist/card HTTP/1.1
Host: localhost:8080
Content-Type: application/json
Accept: */*
Content-Length: 45
{
"cards": [
{
"binCode": "text",
"last4": "text"
}
]
}{
"items": [
{
"binCode": "424242",
"cooldownExpiresAt": "2026-01-29T13:12:50.880Z",
"createdAt": "2023-11-21T02:00:54.465Z",
"id": "cwl_550e8400-e29b-41d4-a716-446655440000",
"last4": "4242"
}
]
}GET /api/whitelist/card/{id} HTTP/1.1
Host: localhost:8080
Accept: */*
{
"binCode": "424242",
"cooldownExpiresAt": "2026-01-29T13:12:50.880Z",
"createdAt": "2023-11-21T02:00:54.465Z",
"id": "cwl_550e8400-e29b-41d4-a716-446655440000",
"last4": "4242"
}