Generates the downloadable URL, and gives access to your service for downloading the converted file from it.
Generates the downloadable URL, and gives access to your service for downloading the converted file from it.
POST https://api.vertopal.com/v1/download/url
Authorization: Bearer [APP_TOKEN]data={
"app": "[APP_ID]",
"connector": "[CONNECTOR]"
}
curl -L -X POST 'https://api.vertopal.com/v1/download/url' \
-H 'Authorization: Bearer [APP_TOKEN]' \
-F 'data={
"app": "[APP_ID]",
"connector": "[CONNECTOR]"
}'
The connector for connecting to another task as the data key.
The original name of the converted file.
The original size of the converted file in bytes.
When the converted file will be deleted from the Vertopal.
The generated URL to download the converted file.
The task has been executed successfully without any errors.
{
"result": {
"output": {
"connector": "[CONNECTOR]",
"name": "sample.jpg",
"size": 182311,
"expires_at": "2023-03-24 08:15:36",
"url": "https://api.vertopal.com/v1/download/url/get"
},
"error": {},
"warning": {}
}
}