# GetIssuingSettlementsSettlement

From **Stripe API**.

`GET /v1/issuing/settlements/{settlement}`

<p>Retrieves an Issuing <code>Settlement</code> object.</p>

## Parameters

### `expand`

- Location: query
- Required: false
- Type: `array`

Specifies which fields in the response should be expanded.

### `settlement`

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

## Request body

- Required: false
### `application/x-www-form-urlencoded`

- Type: `object`

```json
{"additionalProperties":false,"type":"object"}
```

## Security

### `basicAuth`

- Type: `http`
- Request header: `Authorization`
- Scheme: `basic`
Send credentials in the `Authorization` request header using the `Basic` scheme.

Basic HTTP authentication. Allowed headers-- Authorization: Basic <api_key> | Authorization: Basic <base64 hash of `api_key:`>

### `bearerAuth`

- Type: `http`
- Request header: `Authorization`
- Scheme: `bearer`
- Bearer format: `auth-scheme`
Send the token in the `Authorization` request header using the `Bearer` scheme.

Bearer HTTP authentication. Allowed headers-- Authorization: Bearer <api_key>

## Responses

### `200`

Successful response.

### `application/json`

- Type: `object`

When a non-stripe BIN is used, any use of an [issued card](https://stripe.com/docs/issuing) must be settled directly with the card network. The net amount owed is represented by an Issuing `Settlement` object.

```json
{"description":"When a non-stripe BIN is used, any use of an [issued card](https://stripe.com/docs/issuing) must be settled directly with the card network. The net amount owed is represented by an Issuing `Settlement` object.","properties":{"bin":{"description":"The Bank Identification Number reflecting this settlement record.","maxLength":5000,"type":"string"},"clearing_date":{"description":"The date that the transactions are cleared and posted to user's accounts.","type":"integer"},"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).","type":"string"},"id":{"description":"Unique identifier for the object.","maxLength":5000,"type":"string"},"interchange_fees":{"description":"The total interchange received as reimbursement for the transactions.","type":"integer"},"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"},"metadata":{"additionalProperties":{"maxLength":500,"type":"string"},"description":"Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.","type":"object"},"net_total":{"description":"The total net amount required to settle with the network.","type":"integer"},"network":{"description":"The card network for this settlement report. One of [\"visa\"]","enum":["visa"],"type":"string"},"network_fees":{"description":"The total amount of fees owed to the network.","type":"integer"},"network_settlement_identifier":{"description":"The Settlement Identification Number assigned by the network.","maxLength":5000,"type":"string"},"object":{"description":"String representing the object's type. Objects of the same type share the same value.","enum":["issuing.settlement"],"type":"string"},"settlement_service":{"description":"One of `international` or `uk_national_net`.","maxLength":5000,"type":"string"},"transaction_count":{"description":"The total number of transactions reflected in this settlement.","type":"integer"},"transaction_volume":{"description":"The total transaction amount reflected in this settlement.","type":"integer"}},"required":["bin","clearing_date","created","currency","id","interchange_fees","livemode","metadata","net_total","network","network_fees","network_settlement_identifier","object","settlement_service","transaction_count","transaction_volume"],"title":"IssuingSettlement","type":"object","x-expandableFields":[],"x-resourceId":"issuing.settlement"}
```

### `default`

Error response.

### `application/json`

- Type: `object`

An error response from the Stripe API

```json
{"description":"An error response from the Stripe API","properties":{"error":{"$ref":"#/components/schemas/api_errors"}},"required":["error"],"type":"object"}
```

## Request examples

### cURL

```shell
curl --request GET \
  --url https://api.stripe.com/v1/issuing/settlements/{settlement} \
  --header 'content-type: application/x-www-form-urlencoded' \
  --data '{}'
```
