REST Example: No-Show Sale Using a Stored Credential {#lodging-noshow-sale-ex-rest}
===================================================================================

This example shows you how to request a sale payment for a no-show transaction. The example includes optional lodging fields.  
Request

```
{
    "clientReferenceInformation": {
        "code": "TestCode123",
        "comments": "Noshow Sale CP",
        "_comment": "Include the transactionId - A unique value used to manage timeout scenarios when reply message is not received.",
        "partner": {
            "thirdPartyCertificationNumber": "123456789012",
            "developerId": "AssignedDevID",
            "solutionId": "AssignedSolutionID"
        }
    },
    "processingInformation": {
        "capture": "true",
        "commerceIndicator": "internet",
        "authorizationOptions": {
            "ignoreAvsResult": "true",
            "ignoreCvResult": "true",
            "initiator": {
                "type": "merchant",
                "storedCredentialUsed": "true",
                "merchantInitiatedTransaction": {
                    "reason": "4",
                    "_comment": "previousTransactionId field - value from original authorization response message",
                    "previousTransactionId": "304332675422846",
                    "originalAuthorizedAmount": "488.00"
                }
            }
        },
        "industryDataType": "lodging"
    },
    "travelInformation": {
        "lodging": {
            "specialProgramCode": "2"
        }
    },
    "orderInformation": {
        "billTo": {
            "country": "US",
            "lastName": "Smith",
            "address1": "1295 Main Rd",
            "postalCode": "94043",
            "locality": "Mountain View",
            "administrativeArea": "CA",
            "firstName": "Jane",
            "email": "null@cybersource.com"
        },
        "amountDetails": {
            "totalAmount": "500.00",
            "currency": "USD"
        }
    },
    "paymentInformation": {
        "card": {
            "expirationYear": "2031",
            "number": "400552XXXXXXXXXX",
            "securityCode": "424",
            "expirationMonth": "12",
            "type": "001"
        }
    }
}
```

Response to a Successful Request

```
{
    "_links": {
        "void": {
            "method": "POST",
            "href": "/pts/v2/payments/7334468105946974604953/voids"
        },
        "self": {
            "method": "GET",
            "href": "/pts/v2/payments/7334468105946974604953"
        }
    },
    "clientReferenceInformation": {
        "code": "TestCode123",
        "comments": "Noshow Sale CP",
        "partner": {
            "developerId": "AssignedDevID",
            "solutionId": "AssignedSolutionID"
        }
    },
    "id": "7334468105946974604953",
    "orderInformation": {
        "amountDetails": {
            "totalAmount": "500.00",
            "authorizedAmount": "500.00",
            "currency": "USD"
        }
    },
    "paymentAccountInformation": {
        "card": {
            "type": "001"
        }
    },
    "paymentInformation": {
        "accountFeatures": {
            "category": "B",
            "group": "0"
        },
        "tokenizedCard": {
            "type": "001"
        },
        "card": {
            "type": "001"
        }
    },
    "processorInformation": {
        "systemTraceAuditNumber": "023826",
        "paymentAccountReferenceNumber": "V0010013019053587486979965591",
        "approvalCode": "054511",
        "cardVerification": {
            "resultCodeRaw": "M",
            "resultCode": "M"
        },
        "networkTransactionId": "304341036102578",
        "settlementDate": "4346",
        "retrievalReferenceNumber": "434001023826",
        "transactionId": "304341036102578",
        "responseCode": "00",
        "avs": {
            "code": "U",
            "codeRaw": "U"
        }
    },
    "reconciliationId": "7334468105946974604953",
    "status": "AUTHORIZED",
    "submitTimeUtc": "2025-12-06T01:00:10Z"
}
```

