Findable Partner API
  1. Documents
Findable Partner API
  • Documents
    • Get a specific document
      GET
    • Update document metadata
      PATCH
    • Delete a document
      DELETE
    • Get document processing status
      GET
    • List documents in a building
      GET
    • Create a new document upload request
      PUT
    • Search documents for a building owner
      GET
    • Get building category counts
      GET
    • Get documents by category
      GET
    • Search documents in a building
      GET
  • Buildings
    • List buildings for a building owner
      GET
    • Create a building for a building owner
      PUT
    • Get a building
      GET
    • Update a building
      PATCH
    • Delete a building
      DELETE
    • Get building processing status
      GET
  • Deficiency Reports (a.k.a Red Flag Reports)
    • List documents in deficiency report category
      GET
    • Add document to deficiency report category
      PUT
    • Remove document from deficiency report category
      DELETE
    • List deficiency reports for a building
      GET
    • Generate a new deficiency report
      POST
    • Get building deficiency report
      GET
  • Building owner
    • Get a building owner
      GET
    • Update a building owner
      PATCH
    • Delete a building owner
      DELETE
    • Get building owner processing status
      GET
    • List all building owners
      GET
    • Create a new building owner
      POST
  1. Documents

Update document metadata

PATCH
https://api.findable.ai/building_owners/{buildingOwnerId}/buildings/{buildingId}/documents/{documentId}/
ExternalDocument Platform
Last modified:2025-09-16 16:34:54
Update metadata for a specific document such as filename, creation date, or building category

Request

Authorization
or
Path Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Default Response
Body

🟠400Bad Request
🟠403Forbidden
🟠404Not Found
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://api.findable.ai/building_owners//buildings//documents//' \
--header 'Content-Type: application/json' \
--data-raw '{
    "filename": "string",
    "originalCreatedAt": "2019-08-24T14:15:22Z",
    "serialNumber": "string",
    "buildingCategory": "string"
}'
Response Response Example
200 - Example 1
{
    "id": "string",
    "filename": "string",
    "originalPath": "string",
    "buildingCategory": "string",
    "discipline": "string",
    "informationType": "string",
    "informationTypes": [
        "string"
    ],
    "isDrawing": true,
    "isSchemaDrawing": true,
    "serialNumber": "string",
    "size": 0,
    "md5Checksum": "string",
    "corrupt": true,
    "drawingDate": "2019-08-24T14:15:22Z",
    "originalCreatedAt": "2019-08-24T14:15:22Z",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "asBuilt": true
}
Modified at 2025-09-16 16:34:54
Previous
Get a specific document
Next
Delete a document
Built with