# Create lockboxes Create new lockboxes (currently only SentriLock type is supported) Endpoint: POST /lockboxes Version: 1.1.1 Security: BearerAuth ## Request fields (application/json): - `lockbox_type` (string, required) Type of lockbox (currently only SentriLock is supported) Enum: "Sentrilock" - `serial_numbers` (array, required) List of serial numbers for the lockboxes to create Example: ["1234567","7654321"] - `account_id` (string, required) ID of the account to associate with the lockboxes Example: "4b88ff32-8ba0-4bbf-8e60-c789909ac176" ## Response 201 fields (application/json): - `id` (string, required) Unique identifier - `lockbox_type` (string, required) Type of lockbox Enum: "Sentrilock" - `serial_number` (string, required) Serial number of the lockbox Example: "1234567" - `account_id` (string, required) ID of the account that owns the lockbox Example: "4b88ff32-8ba0-4bbf-8e60-c789909ac176" - `created_at` (string, required) Timestamp when the lockbox was created Example: "2023-01-15T12:00:00Z" - `updated_at` (string, required) Timestamp when the lockbox was last updated Example: "2023-01-16T14:30:00Z" ## Response 400 fields (application/json): - `error` (string, required) Error message Example: "Invalid request parameters" - `details` (array) Detailed error information Example: [{"keyword":"required","dataPath":"","schemaPath":"#/required","params":{"missingProperty":"account_id"},"message":"should have required property 'account_id'"}] ## Response 401 fields (application/json): - `error` (string, required) Error message Example: "Invalid request parameters" - `details` (array) Detailed error information Example: [{"keyword":"required","dataPath":"","schemaPath":"#/required","params":{"missingProperty":"account_id"},"message":"should have required property 'account_id'"}] ## Response 500 fields (application/json): - `error` (string, required) Error message Example: "Invalid request parameters" - `details` (array) Detailed error information Example: [{"keyword":"required","dataPath":"","schemaPath":"#/required","params":{"missingProperty":"account_id"},"message":"should have required property 'account_id'"}]