Change file path

PATCH /{client}/{file}
application/json

Body

  • slug string Required

    New file name

Responses

  • 200

    Info about file

    Hide response attributes Show response attributes object
  • 500

    unexpected error

    Hide response attributes Show response attributes object
PATCH /{client}/{file}
curl \
 -X PATCH http://api.example.com/{client}/{file} \
 -H "x-api-key: $API_KEY" \
 -H "Content-Type: application/json" \
 -d '{"slug":"new-file-name"}'
Request example
{
  "slug": "new-file-name"
}
Response examples (200)
{
  "name": "8BgXSCaMZae9auk1kVA9tRP2Km1CzvKsyE8ml8R0.jpg",
  "owner": "client",
  "visibility": "public",
  "path": "client/8BgXSCaMZae9auk1kVA9tRP2Km1CzvKsyE8ml8R0.jpg",
  "mime": "image/jpeg",
  "size": 142083,
  "lastModified": 1640104826
}
Response examples (500)
{
  "message": "An error occurred.",
  "code": 500
}