Requests a limit upgrade for an onramp user by submitting identity information. Only phone number is currently supported as a userId.
The verification process is asynchronous. After calling this endpoint, use the Get Onramp User Limits endpoint to check the status in the limitUpgradeOptions array.
Prerequisites:
Supported fields:
ssnLast4: Last 4 digits of the Social Security Number (no dashes or spaces).dateOfBirth: Date of birth (day, month, year as zero-padded strings).A JWT signed using your CDP API Key Secret, encoded in base64. Refer to the Generate Bearer Token section of our Authentication docs for information on how to generate your Bearer Token.
Request to request a limits upgrade for a user.
The user identifier value. For phone_number type, this must be in E.164 format.
"+12055555555"
The type of user identifier:
phone_number: A phone number in E.164 format associated with an onramp user.phone_number "phone_number"
Populate the properties that correspond to the fields array from the user's OnrampLimitUpgradeOption.
{
"ssnLast4": "5678",
"dateOfBirth": {
"day": "15",
"month": "08",
"year": "1990"
}
}Limit upgrade request accepted.