| Time | Status | User Agent |  |
| :-- | :-- | :-- | :-- |
| Make a request to see history. |

#### URL Expired

The URL for this request expired after 30 days.

### Request schema for creating a collateral.

- **collateral_id**  
  string  
  The ID associated with the collateral for future requests. If not provided on creation, Canopy will generate this field.

- **type**  
  string  
  enum  
  required  
  The type of collateral to create.
  
  REAL_ESTATE, VEHICLE, EQUIPMENT, ACCOUNTS_RECEIVABLE, INVENTORY, BUSINESS_ASSETS, SECURITIES, CASH, CRYPTOCURRENCY, COLLECTIBLES
  
- **description**  
  string  
  A description of the collateral.

- **metadata**  
  object | array  
  Metadata associated with the collateral.

- **initial_valuation**  
  object  
  required  
  The initial valuation of the collateral.

- **liens**  
  array of objects  
  A list of liens associated with the collateral. Each lien represents a security interest in the collateral. Only liens tied to loans or lines of credit (LOCs) created outside of this system should be included here.

### API Responses

- `` 201      Returns the created collateral.
- `` 400      Your request is invalid.
- `` 409      Entity already exists.
- `` 422      Validation Error
- `` 500      A server error has occurred.

### Example CURL Request

```bash
curl --request POST \
     --url https://contact/sales/to/enable/your/sandbox/core/v1/secured/collaterals \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '\n{\n  
  "type": "REAL_ESTATE",\n  
  "initial_valuation": {\n    "valuation_type": "FULL_APPRAISAL"\n  }\n}\n' 
```

### API Responses Valid Status Codes

- `201`  
- `400`  
- `409`  
- `422`  
- `500`

Updated 3 months ago.
