Skip to content

Rename or update a folder

PATCH
/v1/folders/{id}
curl --request PATCH \
--url https://shareout.site/v1/folders/example \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "name": "example", "slug": "example", "description": "example" }'
id
required
string
Media type application/json
object
name
string
slug
string
description
string | null
Example generated
{
"name": "example",
"slug": "example",
"description": "example"
}

Updated

Media type application/json
object
id
string
name
string
slug
string
description
string | null
artifact_count
integer
created_at
string format: date-time
Example generated
{
"id": "example",
"name": "example",
"slug": "example",
"description": "example",
"artifact_count": 1,
"created_at": "2026-04-15T12:00:00Z"
}

Resource not found

Media type application/json
object
success
required
boolean
error
required

Human-readable message.

string
code
required

Machine-readable error code.

string
Example
{
"success": false
}