zulip/templates/zerver/api/upload-file.md

1013 B

Upload a file

Upload a single file and get the corresponding URI.

POST {{ api_url }}/v1/user_uploads

Usage examples

  • Python

{generate_code_example(python)|/user_uploads:post|example}

Arguments

The file to upload must be provided, and it should be placed in the request's body as multipart media type.

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. MAX_FILE_UPLOAD_SIZE defaults to 25MB.

Response

Return values

  • uri: The URI of the uploaded file.

Example response

A typical successful JSON response may look like:

{generate_code_example|/user_uploads:post|fixture(200)}