{ "opencollection": "1.0.0", "info": { "name": "AlayaCare Accounting Accounts File API", "version": "1.0.19-oas3" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "File", "type": "folder" }, "items": [ { "info": { "name": "Get the content of a file (download a file)", "type": "http" }, "http": { "method": "GET", "url": "https://example.alayacare.com/ext/api/v2/accounting/client/:id/:path", "params": [ { "name": "id", "value": "", "type": "path" }, { "name": "path", "value": "", "type": "path" } ] }, "docs": "Get the content of a file (download a file)" }, { "info": { "name": "Upload a file", "type": "http" }, "http": { "method": "POST", "url": "https://example.alayacare.com/ext/api/v2/accounting/client/:id/:path", "params": [ { "name": "id", "value": "", "type": "path" }, { "name": "path", "value": "", "type": "path" } ] }, "docs": "Upload a file at the `path` location and create the underlying folder structure if it doesn't exist already.\n\n`path` **cannot** end with `/` in order to create a file based on the request body.\n\n**Note:** This consumes `multipart form-data` as defined in the parameters below.\n\n**Note on content attributes:** When specifying the key that references the file, the key must be set as `file` in the request in order for the API to find the file.\n" }, { "info": { "name": "Copy or move a file", "type": "http" }, "http": { "method": "PUT", "url": "https://example.alayacare.com/ext/api/v2/accounting/client/:id/:path", "params": [ { "name": "id", "value": "", "type": "path" }, { "name": "path", "value": "", "type": "path" } ] }, "docs": "Copy or move a directory and create the underlying folder structure of the new location if it doesn't already exist.\n\nWhether the directory is moved or simply copied is defined by a `move` header that can be set to `true` (if the header is not provided, its value defaults to `false` and the `source` directory will remain).\n\nThe url of the `PUT` request is the path to the destination location.\ni.e., if we have the following directories:\n- `dir1/child1/`\n- `dir2/child2/`\n\nand we want to copy `chil" }, { "info": { "name": "Delete a file", "type": "http" }, "http": { "method": "DELETE", "url": "https://example.alayacare.com/ext/api/v2/accounting/client/:id/:path", "params": [ { "name": "id", "value": "", "type": "path" }, { "name": "path", "value": "", "type": "path" } ] }, "docs": "Delete a file. As opposed to deleting a directory, the forced-delete header is not required to delete a single file." } ] } ], "bundled": true }