Update metadata for an existing file in Forerunner.
Path Parameters
The unique identifier of the file to update
Body Parameters
A valid URL pointing to the document in an external system
Response
Contains the updated file metadata when successful, or null if the update fails.
UUID uniquely identifying the file
Array of error objects. See Errors.
curl -X PATCH https://app.withforerunner.com/api/v1/files/f8a3b2c1-d4e5-6789-abcd-ef0123456789 \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"externalDocumentURL": "https://dms.example.com/docs/123"}'
{
"file": {
"id": "f8a3b2c1-d4e5-6789-abcd-ef0123456789"
},
"errors": []
}