2018-02-25 01:01:45 +01:00
|
|
|
# Upload a file
|
|
|
|
|
2020-04-28 20:00:46 +02:00
|
|
|
{generate_api_description(/user_uploads:post)}
|
2019-11-30 01:10:18 +01:00
|
|
|
|
2018-02-25 01:01:45 +01:00
|
|
|
## Usage examples
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{start_tabs}
|
2019-10-16 13:11:07 +02:00
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{tab|python}
|
2019-10-16 13:11:07 +02:00
|
|
|
|
2018-06-21 03:04:05 +02:00
|
|
|
{generate_code_example(python)|/user_uploads:post|example}
|
2019-10-16 13:11:07 +02:00
|
|
|
|
|
|
|
{tab|curl}
|
|
|
|
|
|
|
|
{generate_code_example(curl)|/user_uploads:post|example}
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{end_tabs}
|
2018-02-25 01:01:45 +01:00
|
|
|
|
|
|
|
## Arguments
|
|
|
|
|
2018-12-12 19:49:14 +01:00
|
|
|
As described above, the file to upload must be provided in the
|
|
|
|
request's body.
|
2018-02-25 01:01:45 +01:00
|
|
|
|
|
|
|
## Maximum file size
|
|
|
|
|
|
|
|
The maximum file size for uploads can be configured by the
|
|
|
|
administrator of the Zulip server by setting `MAX_FILE_UPLOAD_SIZE`
|
|
|
|
in the [server's settings][1]. `MAX_FILE_UPLOAD_SIZE` defaults
|
|
|
|
to 25MB.
|
|
|
|
|
|
|
|
[1]: https://zulip.readthedocs.io/en/latest/subsystems/settings.html#server-settings
|
|
|
|
|
|
|
|
## Response
|
|
|
|
|
|
|
|
#### Return values
|
|
|
|
|
|
|
|
* `uri`: The URI of the uploaded file.
|
|
|
|
|
|
|
|
#### Example response
|
|
|
|
|
|
|
|
A typical successful JSON response may look like:
|
|
|
|
|
2018-06-21 03:04:05 +02:00
|
|
|
{generate_code_example|/user_uploads:post|fixture(200)}
|