docs(backend): document PATCH share endpoint

This commit is contained in:
2025-12-28 19:06:51 +00:00
parent e3d78497e8
commit 0e8c616489
3 changed files with 204 additions and 5 deletions

View File

@@ -1270,6 +1270,79 @@
}
}
}
},
"patch": {
"security": [
{
"BearerAuth": []
}
],
"description": "Update share link details. Omit expiresAt to keep the current value. Use null to remove the expiry.",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"shares"
],
"summary": "Update share",
"parameters": [
{
"type": "string",
"format": "uuid",
"description": "Account ID",
"name": "accountID",
"in": "path",
"required": true
},
{
"type": "string",
"description": "Share ID",
"name": "shareID",
"in": "path",
"required": true
},
{
"description": "Share details",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/internal_sharing.patchShareRequest"
}
}
],
"responses": {
"200": {
"description": "Updated share",
"schema": {
"$ref": "#/definitions/internal_sharing.Share"
}
},
"400": {
"description": "Invalid request",
"schema": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"401": {
"description": "Not authenticated",
"schema": {
"type": "string"
}
},
"404": {
"description": "Share not found",
"schema": {
"type": "string"
}
}
}
}
},
"/accounts/{accountID}/uploads": {
@@ -2131,6 +2204,17 @@
}
}
},
"internal_sharing.patchShareRequest": {
"description": "Request to update a share link. Omit expiresAt to keep the current value. Use null to remove the expiry.",
"type": "object",
"properties": {
"expiresAt": {
"description": "Optional expiration time for the share (ISO 8601), null clears it.",
"type": "string",
"example": "2025-01-15T00:00:00Z"
}
}
},
"internal_upload.Status": {
"description": "Upload status enumeration",
"type": "string",
@@ -2239,4 +2323,4 @@
"in": "header"
}
}
}
}