> ## Documentation Index > Fetch the complete documentation index at: https://www.bloxs.io/llms.txt > Use this file to discover all available pages before exploring further. # Get a list of commercial rent deposit types > Get a list of existing commercial rent deposit types. ## OpenAPI ````json GET /api/v1/contracts/conceptcommercialrent/deposittypes { "openapi": "3.0.4", "info": { "title": "Concept SalesContracts V1", "description": "Welcome to BETA version of the new Sales Concept Contracts API - intended for client public testing before the launch of the final version. During this BETA phase, we'll be improving the API based on specific client's feedbacks.", "version": "v1" }, "security": [ {} ], "tags": [ { "name": "CommercialRentContracts" }, { "name": "Concept CommercialRent" }, { "name": "Concept PrivateRent" }, { "name": "GeneralSalesContracts" }, { "name": "Metadata" }, { "name": "PrivateRentContracts" }, { "name": "SupplierContracts" } ], "paths": { "/api/v1/contracts/conceptcommercialrent/deposittypes": { "get": { "tags": [ "Admin" ], "summary": "Get a list of commercial rent deposit types", "description": "Get a list of existing commercial rent deposit types.", "operationId": "GetDepositTypesForCommercialRent", "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/DepositTypeModel" } } } } } }, "x-d360-narrative-url": "

Get a list of commercial rent deposit types

This endpoint retrieves the list of deposit types available for commercial lease contracts in Bloxs.

A developer calls this endpoint to look up the valid values before setting the deposit type on a concept commercial lease contract, since depositTypeName is one of the fields required to update a concept commercial lease contract.


Request Fields

This endpoint takes no request fields.


Response Fields

Field

Type

Required

Description

name

string

No

The name of the deposit type.

" } } }, "components": { "schemas": { "DepositTypeModel": { "type": "object", "properties": { "name": { "type": "string", "nullable": true } }, "additionalProperties": false } } } } ````