Update Partner Brand

Description

The updateCrossBrand endpoint is used to modify an existing Partner Brand rule within the Loyalty Rewards Program.

Request

Endpoint

/ui/v1/updateCrossBrand

Method

POST
Content-Type: application/json
Authorization: $TOKEN

Note

Replace $TOKEN in the request with the base64-encoded username/password combination in the format username:password.

Given a username of username and a password of password, the request header would appear as follows:

Content-Type: application/json
Authorization: dXNlcm5hbWU6cGFzc3dvcmQ=

Request Body

{
    "id": 2,
    "createdDateTime": 1751399174000,
    "lastUpdatedDateTime": null,
    "lockedDateTime": null,
    "lockedByUserId": null,
    "createdUserId": 642,
    "lastModifiedUserId": "642",
    "crossBrandName": "ABC Company",
    "rewardsProgramName": "ABC Rewards",
    "merchantBrandPoints": "2",
    "crossBrandPoints": "3",
    "crossBrandStatus": {
        "value": "Active",
        "name": "ACTIVE"
    },
    "minimumTransferPoints": null,
    "maxTransferPointsPerYear": null,
    "flatTransferFees": {
        "amount": "20.00",
        "currency": {
            "id": 1,
            "currencyCode": "USD",
            "currencyText": "United States Dollar",
            "currencySymbol": "$",
            "fractionalUnit": "Cent",
            "numOfDecimalPlaces": "2",
            "supportedByVisaCheckout": true,
            "createdDateTime": 1733858673000,
            "isoNumericCode": "840",
            "isoCountryCode": "840"
        }
    },
    "transferFeesPerPoint": {
        "amount": null,
        "currency": {
            "id": 1,
            "currencyCode": "USD",
            "currencyText": "United States Dollar",
            "currencySymbol": "$",
            "fractionalUnit": "Cent",
            "numOfDecimalPlaces": "2",
            "supportedByVisaCheckout": true,
            "createdDateTime": 1733858673000,
            "isoNumericCode": "840",
            "isoCountryCode": "840"
        }
    },
    "maxTransferFees": {
        "amount": null,
        "currency": {
            "id": 1,
            "currencyCode": "USD",
            "currencyText": "United States Dollar",
            "currencySymbol": "$",
            "fractionalUnit": "Cent",
            "numOfDecimalPlaces": "2",
            "supportedByVisaCheckout": true,
            "createdDateTime": 1733858673000,
            "isoNumericCode": "840",
            "isoCountryCode": "840"
        }
    },
    "payFeeWithPoints": null,
    "merchantId": 42,
    "createdUserName": null,
    "message": null,
    "transferFeesRadioButton": "FLAT_TRANSFER_FEES"
}

Response

{
    "id": 2,
    "createdDateTime": 1751399174000,
    "lastUpdatedDateTime": null,
    "lockedDateTime": null,
    "lockedByUserId": null,
    "createdUserId": 642,
    "lastModifiedUserId": 642,
    "crossBrandName": "ABC Company",
    "rewardsProgramName": "ABC Rewards",
    "merchantBrandPoints": 2,
    "crossBrandPoints": 3,
    "crossBrandStatus": {
        "value": "Active",
        "name": "ACTIVE"
    },
    "minimumTransferPoints": null,
    "maxTransferPointsPerYear": null,
    "flatTransferFees": {
        "amount": 20,
        "currency": {
            "id": 1,
            "currencyCode": "USD",
            "currencyText": "United States Dollar",
            "currencySymbol": "$",
            "fractionalUnit": "Cent",
            "numOfDecimalPlaces": "2",
            "supportedByVisaCheckout": true,
            "createdDateTime": 1733858673000,
            "isoNumericCode": "840",
            "isoCountryCode": "840"
        }
    },
    "transferFeesPerPoint": {
        "amount": null,
        "currency": {
            "id": 1,
            "currencyCode": "USD",
            "currencyText": "United States Dollar",
            "currencySymbol": "$",
            "fractionalUnit": "Cent",
            "numOfDecimalPlaces": "2",
            "supportedByVisaCheckout": true,
            "createdDateTime": 1733858673000,
            "isoNumericCode": "840",
            "isoCountryCode": "840"
        }
    },
    "maxTransferFees": {
        "amount": null,
        "currency": {
            "id": 1,
            "currencyCode": "USD",
            "currencyText": "United States Dollar",
            "currencySymbol": "$",
            "fractionalUnit": "Cent",
            "numOfDecimalPlaces": "2",
            "supportedByVisaCheckout": true,
            "createdDateTime": 1733858673000,
            "isoNumericCode": "840",
            "isoCountryCode": "840"
        }
    },
    "payFeeWithPoints": null,
    "merchantId": 42,
    "createdUserName": null,
    "message": {
        "code": "55",
        "type": {
            "name": "SUCCESS"
        },
        "include_i_icon": false,
        "description": "CROSS_BRAND_MODIFICATION_SUCCESS",
        "parameters": [
            {
                "name": "PARTNER_BRAND_NAME",
                "value": "ABC Company"
            }
        ]
    }
}

Updated As Of Version 6.6.x