---
title: "Update sale (V2)"
method: PUT
path: "/api/v2/files/sales/{saleGuid}"
tags: ["V2 Sales"]
---

# Update sale (V2)

`PUT /api/v2/files/sales/{saleGuid}`

Updates sale-level fields for the specified sale, using V2 managed fields.

### Validation & Requirements
#### Required Parameters
- `saleGuid` (path, string, format=guid)
- `form` (body, object)

#### Required JSON Body Fields
- None

#### Validations
- Invalid GUID values in `*Guid`/`*Guids` fields return `422 Unprocessable Entity`.
- Invalid date values in `*date*` fields return `422 Unprocessable Entity`.
- Missing required request body returns `422 Unprocessable Entity` with `Missing request body.`.
- Additional business-rule validation may return `422` with details in the `errors` array.

## Path parameters

- `saleGuid` string, guid, required

## Request body

- UpdateSaleForm
  - `mlsNumber` string, nullable
  - `contractAcceptanceDate` string, date-time, nullable
  - `escrowNumber` string, nullable
  - `escrowClosingDate` string, date-time, nullable
  - `actualClosingDate` string, date-time, nullable — Setting this field closes the sale (status → Closed) and records the closing date. Prefer the dedicated PUT /api/files/sales/{saleGuid}/close endpoint for an explicit close action.
  - `sourceId` integer, nullable — SourceId can be retrieved from the AllowableSelections list.
  - `otherSource` string, nullable — Required only for certain SourceId fields
  - `listingPrice` number, nullable
  - `salePrice` number, nullable
  - `isOfficeLead` boolean, nullable
  - `fileId` string, nullable
  - `apn` string, nullable
  - `realPropertyTypeId` integer, nullable
  - `realPropertySubtypeId` integer, nullable
  - `commercialLease` CommercialLeaseDTO6
    - `commencementDate` string, date-time, nullable
    - `endingDate` string, date-time, nullable
    - `renewalOption` boolean, nullable
    - `purchaseOption` boolean, nullable
    - `sizeType` string, nullable
    - `size` number, nullable

## Response `200`

- LinkedResponseOfUpdateSaleResponse
  - `value` UpdateSaleResponse
  - `warnings` string[], nullable
  - `links` Link[], nullable
    - `href` string, nullable
    - `rel` string, nullable
    - `method` string, nullable

## Other responses

- `404`
- `422`

---

[API](https://skmtc.net/skyslope/apis/skyslope-api.md) · [All operations](https://skmtc.net/skyslope/apis/skyslope-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/skyslope/skyslope-api/revisions/bad0d2db9b7a/schema)
