# issuing\_cardholder\_requirements

From **Stripe API**.

- Type: `object`

## Properties

### `disabled_reason`

- Required: false
- Type: `string`
- Nullable: true
- Allowed values: `"listed"`, `"rejected.listed"`, `"under_review"`

If `disabled_reason` is present, all cards will decline authorizations with `cardholder_verification_required` reason.

### `past_due`

- Required: false
- Type: `array`
- Nullable: true

Array of fields that need to be collected in order to verify and re-enable the cardholder.

## JSON Schema

```json
{"properties":{"disabled_reason":{"description":"If `disabled_reason` is present, all cards will decline authorizations with `cardholder_verification_required` reason.","enum":["listed","rejected.listed","under_review"],"nullable":true,"type":"string"},"past_due":{"description":"Array of fields that need to be collected in order to verify and re-enable the cardholder.","items":{"enum":["company.tax_id","individual.dob.day","individual.dob.month","individual.dob.year","individual.first_name","individual.last_name","individual.verification.document"],"type":"string","x-stripeBypassValidation":true},"nullable":true,"type":"array"}},"title":"IssuingCardholderRequirements","type":"object","x-expandableFields":[]}
```
