# issuing\_authorization\_request

From **Stripe API**.

- Type: `object`

## Properties

### `amount`

- Required: true
- Type: `integer`

The `pending_request.amount` at the time of the request, presented in your card's currency and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal). Stripe held this amount from your account to fund the authorization if the request was approved.

### `amount_details`

- Required: false
- Nullable: true

Detailed breakdown of amount components. These amounts are denominated in `currency` and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).

### `approved`

- Required: true
- Type: `boolean`

Whether this request was approved.

### `created`

- Required: true
- Type: `integer`
- Format: `unix-time`

Time at which the object was created. Measured in seconds since the Unix epoch.

### `currency`

- Required: true
- Type: `string`
- maxLength: `5000`

Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).

### `merchant_amount`

- Required: true
- Type: `integer`

The `pending_request.merchant_amount` at the time of the request, presented in the `merchant_currency` and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).

### `merchant_currency`

- Required: true
- Type: `string`
- maxLength: `5000`

The currency that was collected by the merchant and presented to the cardholder for the authorization. Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).

### `reason`

- Required: true
- Type: `string`
- Allowed values: `"account_disabled"`, `"card_active"`, `"card_inactive"`, `"cardholder_inactive"`, `"cardholder_verification_required"`, `"insufficient_funds"`, `"not_allowed"`, `"spending_controls"`, `"suspected_fraud"`, `"verification_failed"`, `"webhook_approved"`, `"webhook_declined"`, `"webhook_timeout"`

The reason for the approval or decline.

## JSON Schema

```json
{"properties":{"amount":{"description":"The `pending_request.amount` at the time of the request, presented in your card's currency and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal). Stripe held this amount from your account to fund the authorization if the request was approved.","type":"integer"},"amount_details":{"anyOf":[{"$ref":"#/components/schemas/issuing_authorization_amount_details"}],"description":"Detailed breakdown of amount components. These amounts are denominated in `currency` and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).","nullable":true},"approved":{"description":"Whether this request was approved.","type":"boolean"},"created":{"description":"Time at which the object was created. Measured in seconds since the Unix epoch.","format":"unix-time","type":"integer"},"currency":{"description":"Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).","maxLength":5000,"type":"string"},"merchant_amount":{"description":"The `pending_request.merchant_amount` at the time of the request, presented in the `merchant_currency` and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).","type":"integer"},"merchant_currency":{"description":"The currency that was collected by the merchant and presented to the cardholder for the authorization. Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).","maxLength":5000,"type":"string"},"reason":{"description":"The reason for the approval or decline.","enum":["account_disabled","card_active","card_inactive","cardholder_inactive","cardholder_verification_required","insufficient_funds","not_allowed","spending_controls","suspected_fraud","verification_failed","webhook_approved","webhook_declined","webhook_timeout"],"type":"string","x-stripeBypassValidation":true}},"required":["amount","approved","created","currency","merchant_amount","merchant_currency","reason"],"title":"IssuingAuthorizationRequest","type":"object","x-expandableFields":["amount_details"]}
```
