# Uncommitted Lines of Credit
> Uncommitted Lines of Credit.

## The Uncommitted Line of Credit object
### Example
```json
{
  "amount": 100,
  "created_at": "2020-01-31T23:59:59Z",
  "entity_id": "entity_n8y8tnk2p9339ti393yi",
  "id": "uncommitted_line_of_credit_vgqqm9ny1bl7ru5th776",
  "program_id": "program_i2v2os4mwza1oetokh9i",
  "type": "uncommitted_line_of_credit"
}
```
### Attributes
- `amount` (integer)
  The pending amount in USD cents.

- `created_at` (string)
  The timestamp when the Uncommitted Line of Credit was created.

- `entity_id` (string)
  The identifier of the Entity that the Uncommitted Line of Credit is associated with.

- `id` (string)
  The identifier of the Uncommitted Line of Credit.

- `program_id` (string)
  The identifier of the Program that the Uncommitted Line of Credit is associated with.

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

## List Uncommitted Lines of Credit
GET /uncommitted_lines_of_credit

### Example
```curl
curl \
  --url "${INCREASE_URL}/uncommitted_lines_of_credit" \
  -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.

### Returns a Uncommitted Line of Credit List object:
```json
{
  "data": [
    {
      "amount": 100,
      "created_at": "2020-01-31T23:59:59Z",
      "entity_id": "entity_n8y8tnk2p9339ti393yi",
      "id": "uncommitted_line_of_credit_vgqqm9ny1bl7ru5th776",
      "program_id": "program_i2v2os4mwza1oetokh9i",
      "type": "uncommitted_line_of_credit"
    }
  ],
  "next_cursor": "v57w5d"
}
```

## Retrieve an Uncommitted Line of Credit
GET /uncommitted_lines_of_credit/{uncommitted_line_of_credit_id}

### Example
```curl
curl \
  --url "${INCREASE_URL}/uncommitted_lines_of_credit/uncommitted_line_of_credit_vgqqm9ny1bl7ru5th776" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
```
### Path Parameters
- `uncommitted_line_of_credit_id` (string, required)
  The identifier of the Uncommitted Line of Credit.