POST
/
file
curl --request POST \
  --url https://api.jsxmail.org/file \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data'
{
  "createdAt": "2023-11-07T05:31:56Z",
  "encoding": "<string>",
  "hash": "<string>",
  "id": "<string>",
  "key": "<string>",
  "mimeType": "<string>",
  "originalName": "<string>",
  "size": 123,
  "url": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data
The file to upload
file
file

Response

200
application/json
File uploaded
createdAt
string
required
encoding
string
required
hash
string
required
id
string
required
key
string
required
mimeType
string
required
originalName
string
required
size
integer
required
url
string
required