Customer Blocklist
Last updated
Last updated
GET /api/blocklist/customers HTTP/1.1
Host: localhost:8080
Accept: */*
{
"items": [
{
"binCode": "424242",
"createdAt": "2023-11-21T02:00:54.465Z",
"email": "[email protected]",
"id": "blc_550e8400-e29b-41d4-a716-446655440000",
"last4": "4242"
}
],
"nextCursor": "text"
}POST /api/blocklist/customers HTTP/1.1
Host: localhost:8080
Content-Type: application/json
Accept: */*
Content-Length: 74
{
"customers": [
{
"binCode": "text",
"email": "[email protected]",
"last4": "text"
}
]
}{
"items": [
{
"binCode": "424242",
"createdAt": "2023-11-21T02:00:54.465Z",
"email": "[email protected]",
"id": "blc_550e8400-e29b-41d4-a716-446655440000",
"last4": "4242"
}
]
}GET /api/blocklist/customers/{id} HTTP/1.1
Host: localhost:8080
Accept: */*
{
"binCode": "424242",
"createdAt": "2023-11-21T02:00:54.465Z",
"email": "[email protected]",
"id": "blc_550e8400-e29b-41d4-a716-446655440000",
"last4": "4242"
}