For the complete documentation index, see llms.txt. This page is also available as Markdown.

Transaction Filtering Object

No
Name
Type
Mandatory
Min Length
Max Length
Description

1

accepted

Object

O

1

5

Whitelist Rule for Credit Card

2

rejected

Object

O

1

5

Blacklist Rule for Credit Card

3

point

O

1

3

Transaction Filtering Point on Order

"transactionFiltering": {
    "accepted": {
        "cardBin" : [
            "443426",
            "512345"
        ],
        "cardType" : [

        ],
        "cardBrand" : [

        ],
        "cardIssuingName" : [

        ],
        "cardIssuingCountry" : [

        ]
    },
    "rejected": {
        "cardBin" : [
            "443426",
            "512345"
        ],
        "cardType" : [

        ],
        "cardBrand" : [

        ],
        "cardIssuingName" : [

        ],
        "cardIssuingCountry" : [

        ]
    },
    "point": {
        "last4": "1234",
        "ownedPoints": "9999",
        "rule": [
            {
                "cardBin": "454178001",
                "pointToIdr": "5",
                "min": {
                    "amount": "20000"
                },
                "max": {
                    "amount": "150000",
                    "disc": "50"
                }
            },
            {
                "cardBin": "454179002",
                "pointToIdr": "5",
                "min": {
                    "amount": "20000"
                },
                "max": {
                    "amount": "150000",
                    "disc": "50"
                }
            }
        ]
    },
}

Last updated