추가 신호

이 페이지에서는 점수 품질을 개선하기 위해 평가를 만들 때 전송할 수 있는 추가 필드를 보여줍니다. 자세한 내용은 트랜잭션 데이터를 참조하세요.

다음 코드 스니펫에서는 트랜잭션 데이터와 관련된 추가 필드가 있는 샘플 요청 본문을 보여줍니다.

{
    "event": {
        "token": "YOUR_TOKEN",
        "site_key": "KEY_ID",
        "expected_action": "YOUR_CHECKOUT_ACTION_NAME",
        "transaction_data": {
            "transaction_id": "txid-1234567890",
            "payment_method": "credit-card",
            "card_bin": "411111",
            "card_last_four": "1234",
            "currency_code": "USD",
            "value": 39.98,
            "shipping_value": 7.99,
            "shipping_address": {
                "recipient": "name1 name2",
                "address": [
                    "123 Street Name",
                    "Apt 1"
                ],
                "locality": "Sunnyvale",
                "administrative_area": "CA",
                "region_code": "USA",
                "postal_code": "123456"
            },
            "billing_address": {
                "recipient": "name1 name2",
                "address": [
                    "123 Street Name",
                    "Apt 1"
                ],
                "locality": "Sunnyvale",
                "administrative_area": "CA",
                "region_code": "USA",
                "postal_code": "123456"
            },
            "user": {
                "account_id": "abcde12345",
                "creation_ms": 1650000000000,
                "email": "user@example.com",
                "email_verified": true,
                "phone_number": "+18005550175",
                "phone_verified": false
            },
            "merchant": {
                "account_id": "abcde12345",
                "creation_ms": 1650000000000,
                "email": "user@example.com",
                "email_verified": true,
                "phone_number": "+1+18005550178",
                "phone_verified": false
            },
            "items": [
                {
                    "name": "first item",
                    "value": 19.99,
                    "quantity": 1,
                    "merchant_account_id": "abcde12345"
                },
                {
                    "name": "second item",
                    "value": 19.99,
                    "quantity": 1,
                    "merchant_account_id": "abcde12345"
                }
            ],
            "gateway_info": {
                "name": "google",
                "gateway_response_code": "SUCCESS",
                "avs_response_code": "Y",
                "cvv_response_code": "Y"
            }
        }
    }
}

평가를 만드는 방법은 웹사이트 평가 만들기를 참조하세요.

다음 단계