The account holder code you provided when you created the account holder.
returnUrl
string
The URL where the account holder will be redirected back to after they fill out the questionnaire, or if their session times out. Maximum length of 500 characters.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/hosted-onboarding-get-pci-url-request-schema.json",
"title": "GetPciUrlRequest",
"description": "GetPciUrlRequest schema from Adyen API",
"type": "object",
"properties": {
"accountHolderCode": {
"description": "The account holder code you provided when you created the account holder.",
"type": "string"
},
"returnUrl": {
"description": "The URL where the account holder will be redirected back to after they fill out the questionnaire, or if their session times out. Maximum length of 500 characters.",
"type": "string"
}
},
"required": [
"accountHolderCode"
]
}