File Management Service
Files

Update File

1min
code examples curl location globoff request put 'https //{base url}/core/api/v1/file manager/folders/{foldername}/files/{fileid}' \\ \ header 'accept application/json' \\ \ header 'content type application/json' \\ \ data '{ "file" { "type" "", "data" "" } }'var myheaders = new headers(); myheaders append("accept", "application/json"); myheaders append("content type", "application/json"); var raw = json stringify({ "file" { "type" "", "data" "" } }); var requestoptions = { method 'put', headers myheaders, body raw, redirect 'follow' }; fetch("https //{base url}/core/api/v1/file manager/folders/{foldername}/files/{fileid}", requestoptions) then(response => response text()) then(result => console log(result)) catch(error => console log('error', error));require "uri" require "json" require "net/http" url = uri("https //{base url}/core/api/v1/file manager/folders/{foldername}/files/{fileid}") https = net http new(url host, url port) https use ssl = true request = net http put new(url) request\["accept"] = "application/json" request\["content type"] = "application/json" request body = json dump({ "file" { "type" "", "data" "" } }) response = https request(request) puts response read body import requests import json url = "https //{base url}/core/api/v1/file manager/folders/{foldername}/files/{fileid}" payload = json dumps({ "file" { "type" "", "data" "" } }) headers = { 'accept' 'application/json', 'content type' 'application/json' } response = requests request("put", url, headers=headers, data=payload) print(response text) responses // ok the request accepted { "data" { "id" "file\ c59f0bcb 5f9b 43b5 b6d2 73b93c17caa2" }, "request" { "uri" "", "querystring" "", "body" {}, "method" "" } }// bad request the server is unable to process the request due to something that is perceived to be a client error { "error" { "code" "", "description" "", "additionalinfo" {} }, "request" { "uri" "", "querystring" "", "body" {}, "method" "" } }// not found the server can not find the requested resource { "error" { "code" "", "description" "", "additionalinfo" {} }, "request" { "uri" "", "querystring" "", "body" {}, "method" "" } }// server error the server is not ready to handle the request this could be due to maintenance downtime or system resource constraints { "error" { "code" "", "description" "", "additionalinfo" {} }, "request" { "uri" "", "querystring" "", "body" {}, "method" "" } }