Complete

put

Completes a transfer after all files have been uploaded. This operation makes the transfer available for downloads and sends out emails to recipients, and optionally to the sender. The response also includes a common (non-tracked) URL to the download page for this transfer. Downloading files at this URL will record downloads, but not linked to any recipient.

Body
transferidstring · min: 1Required

ID of the transfer to be completed (retrieved in the 'Initialize' response).

transferkeystring · uuidRequired

Secret key of the transfer to be completed (retrieved in the 'Initialize' response).

Responses
200
OK
put
PUT /transfer/complete HTTP/1.1
Host: api-public.filemail.com
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 74

{
  "transferid": "text",
  "transferkey": "123e4567-e89b-12d3-a456-426614174000"
}
{
  "responsestatus": "OK",
  "errorid": "text",
  "errormessage": "text",
  "data": {
    "downloadurl": "text"
  },
  "errorcode": 1
}

Last updated

Was this helpful?