# issuing\_authorization\_pending\_request

From **Stripe API**.

- Type: `object`

## Properties

### `amount`

- Required: true
- Type: `integer`

The additional amount Stripe will hold if the authorization is approved, in the card's [currency](https://stripe.com/docs/api#issuing_authorization_object-pending-request-currency) and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).

### `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).

### `currency`

- Required: true
- Type: `string`

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).

### `is_amount_controllable`

- Required: true
- Type: `boolean`

If set `true`, you may provide [amount](https://stripe.com/docs/api/issuing/authorizations/approve#approve_issuing_authorization-amount) to control how much to hold for the authorization.

### `merchant_amount`

- Required: true
- Type: `integer`

The amount the merchant is requesting to be authorized in the `merchant_currency`. The amount is in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).

### `merchant_currency`

- Required: true
- Type: `string`

The local currency the merchant is requesting to authorize.

## JSON Schema

```json
{"properties":{"amount":{"description":"The additional amount Stripe will hold if the authorization is approved, in the card's [currency](https://stripe.com/docs/api#issuing_authorization_object-pending-request-currency) and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).","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},"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).","type":"string"},"is_amount_controllable":{"description":"If set `true`, you may provide [amount](https://stripe.com/docs/api/issuing/authorizations/approve#approve_issuing_authorization-amount) to control how much to hold for the authorization.","type":"boolean"},"merchant_amount":{"description":"The amount the merchant is requesting to be authorized in the `merchant_currency`. The amount is in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).","type":"integer"},"merchant_currency":{"description":"The local currency the merchant is requesting to authorize.","type":"string"}},"required":["amount","currency","is_amount_controllable","merchant_amount","merchant_currency"],"title":"IssuingAuthorizationPendingRequest","type":"object","x-expandableFields":["amount_details"]}
```
