Risk Supplementary Data

August 21, 2026 ยท View on GitHub

Additional information necessary to evaluate the risk profile of a transaction.

Structure

RiskSupplementaryData

Fields

NameTypeTagsDescriptionGetterSetter
CustomerParticipantMetadataOptionalProfile information of the sender or receiver.ParticipantMetadata getCustomer()setCustomer(ParticipantMetadata customer)

Example

import com.paypal.sdk.models.ParticipantMetadata;
import com.paypal.sdk.models.RiskSupplementaryData;

RiskSupplementaryData riskSupplementaryData = new RiskSupplementaryData.Builder()
    .customer(new ParticipantMetadata.Builder()
        .ipAddress("ip_address0")
        .build())
    .build();