package main import ( "fmt" "os" "go.m3o.com/space" ) // Update an object. If an object with this name does not exist, creates a new one. // You need to send the request as a multipart/form-data rather than the usual application/json // with each parameter as a form field. func main() { spaceService := space.NewSpaceService(os.Getenv("M3O_API_TOKEN")) rsp, err := spaceService.Update(&space.UpdateRequest{ Name: "images/file.jpg", Object: "", Visibility: "public", }) fmt.Println(rsp, err) }