Install our app 🪄 Click on the icon in the top right of the address bar.

文件

POST https://birbshare.com/files/create_api
参数 Details Description
uuid 需要的 字符串 -
chunk_index 需要的 整数 -
total_chunks 需要的 整数 -
file_name 需要的 字符串 -
file 需要的 文件 -
password 可选的 字符串 -
file_encryption_is_enabled 可选的 布尔值 -
curl --request POST \
--url 'https://birbshare.com/files/create_api' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'uuid=de09be56-639f-4213-863b-5ea1aa065970' \
--form 'chunk_index=0' \
--form 'total_chunks=1' \
--form 'file_name=example.pdf' \
--form 'file=example.pdf' \
{ "data": { "id": 1 } }