Properties
| Name | Type | Description |
|---|---|---|
| accountHolderCode | string | 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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetPciUrlRequest",
"title": "GetPciUrlRequest",
"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"
],
"type": "object"
}