# Upload a new development image Upload a new image for a specific development using its unique ID. This endpoint allows you to add images that are linked to the development, which can include photos of the property, architectural designs, or other relevant visuals. The uploaded file should be provided as a multipart file in the request. If the specified development ID does not exist, a error will be returned. In case of system errors during the upload process, a will be triggered. Endpoint: POST /api/v3/developments/{id}/images/upload Version: 3.0.4 Security: OAuth2 ## Path parameters: - `id` (integer, required) ## Query parameters: - `currentUser` (object, required) ## Request fields (application/json): - `file` (string, required) ## Response 201 fields (application/json): - `id` (integer) Unique identifier of the attachment - `name` (string, required) Name of the attachment - `description` (string) Description of the attachment - `fileSize` (integer) File size in bytes - `fileType` (string) File type of the attachment, e.g., image/jpeg - `viewUrl` (string) - `development` (object) Summary of the development the building belongs to - `development.id` (integer) Unique identifier of the Development Example: 1 - `development.name` (string) Name of the Development Example: "The Residences" - `isPrimary` (boolean)