Updating Uploads

API Endpoint

https://dev.interrupted.me/upload/{id}

Method

PATCH

Description

This endpoint allows you to update the metadata of a specific file you have uploaded to our servers.

Headers

Below are the headers you need to send to the endpoint.

HeaderValueDescription
AuthorizationBearer <token>Required. Your API token.
User-AgentstringRequired. Your user agent.
Content-Typeapplication/jsonRequired. The content type.

Parameters

Below are the parameters you need to send to the endpoint.

ParameterValueRequiredDescription
idstringRequired.The ID of the file you want to update.
metadatastringRequired.The metadata you want to update. (max length: 500 characters)

Example Response

{
    "id": 50,
    "user_id": 2,
    "file_name": "GAtU0JFE6dSW9Z5K.jpg",
    "file_path": "dev/2/GAtU0JFE6dSW9Z5K.jpg",
    "file_size": 17647,
    "metadata": "{\"value1\":\"hello world\",\"value2\":\"bye world!\"}"
}