# Plaid Processor Tokens
> A Plaid Processor Token grants Increase access to an external bank account's balance and transaction data through Plaid. Increase uses this data when underwriting Loan Applications.

[Events](https://increase.com/documentation/webhooks.md) will be generated for this resource. The possible event categories are: `plaid_processor_token.created`.

## The Plaid Processor Token object
### Example
```json
{
  "created_at": "2020-01-31T23:59:59Z",
  "id": "plaid_processor_token_u8go17ptm6tnxi70hwiz",
  "idempotency_key": null,
  "type": "plaid_processor_token"
}
```
### Attributes
- `created_at` (string)
  The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the Plaid Processor Token was created.

- `id` (string)
  The Plaid Processor Token identifier.

- `idempotency_key` (string, nullable)
  The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about [idempotency](https://increase.com/documentation/idempotency-keys).

- `type` (string)
  A constant representing the object's type. For this resource it will always be `plaid_processor_token`.

## List Plaid Processor Tokens
GET /plaid_processor_tokens

### Example
```curl
curl \
  --url "${INCREASE_URL}/plaid_processor_tokens" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
```

### Query Parameters
- `cursor` (string, optional)
  Return the page of entries after this one.

- `limit` (integer, optional)
  Limit the size of the list that is returned. The default (and maximum) is 100 objects.
  Default: `100`

- `idempotency_key` (string, optional)
  Filter records to the one with the specified `idempotency_key` you chose for that object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about [idempotency](https://increase.com/documentation/idempotency-keys).

### Returns a Plaid Processor Token List object:
```json
{
  "data": [
    {
      "created_at": "2020-01-31T23:59:59Z",
      "id": "plaid_processor_token_u8go17ptm6tnxi70hwiz",
      "idempotency_key": null,
      "type": "plaid_processor_token"
    }
  ],
  "next_cursor": "v57w5d"
}
```

## Create a Plaid Processor Token
POST /plaid_processor_tokens

### Example
```curl
curl -X "POST" \
  --url "${INCREASE_URL}/plaid_processor_tokens" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}" \
  -H "Content-Type: application/json" \
  -d $'{
    "processor_token": "processor-production-0asd1-a92nc"
  }'
```

### Body Parameters
- `processor_token` (string, required)
  The processor token generated by Plaid for sharing the external bank account with Increase.

## Retrieve a Plaid Processor Token
GET /plaid_processor_tokens/{plaid_processor_token_id}

### Example
```curl
curl \
  --url "${INCREASE_URL}/plaid_processor_tokens/plaid_processor_token_u8go17ptm6tnxi70hwiz" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
```
### Path Parameters
- `plaid_processor_token_id` (string, required)
  The identifier of the Plaid Processor Token.