# ephemeral\_key

From **Stripe API**.

- Type: `object`

## Properties

### `created`

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

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

### `expires`

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

Time at which the key will expire. Measured in seconds since the Unix epoch.

### `id`

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

Unique identifier for the object.

### `livemode`

- Required: true
- Type: `boolean`

Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.

### `object`

- Required: true
- Type: `string`
- Allowed values: `"ephemeral_key"`

String representing the object's type. Objects of the same type share the same value.

### `secret`

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

The key's secret. You can use this value to make authorized requests to the Stripe API.

## JSON Schema

```json
{"properties":{"created":{"description":"Time at which the object was created. Measured in seconds since the Unix epoch.","format":"unix-time","type":"integer"},"expires":{"description":"Time at which the key will expire. Measured in seconds since the Unix epoch.","format":"unix-time","type":"integer"},"id":{"description":"Unique identifier for the object.","maxLength":5000,"type":"string"},"livemode":{"description":"Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.","type":"boolean"},"object":{"description":"String representing the object's type. Objects of the same type share the same value.","enum":["ephemeral_key"],"type":"string"},"secret":{"description":"The key's secret. You can use this value to make authorized requests to the Stripe API.","maxLength":5000,"type":"string"}},"required":["created","expires","id","livemode","object"],"title":"EphemeralKey","type":"object","x-expandableFields":[],"x-resourceId":"ephemeral_key"}
```
