Transfers

GET https://dev.yocado.com/api/transfers/
curl --request GET \
--url 'https://dev.yocado.com/api/transfers/' \
--header 'Authorization: Bearer {api_key}' \
Parameter Details Beschreibung
page Wahlweise Ganze Zahl Die Seitenzahl, von der Sie Ergebnisse erhalten möchten. Standardmäßig ist 1.
results_per_page Wahlweise Ganze Zahl Wie viele Ergebnisse Sie pro Seite wünschen. Zulässige Werte sind: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Standardmäßig 25.
{ "data": [ { "id": 1, "user_id": 1, "project_id": 0, "uploader_id": "f528764d624db129b32c21fbca0cb8d6", "pixels_ids": [], "files_ids": [ 1,2,3 ], "name": "Example", "description": "Example", "type": "link", "email_to": null, "url": "example", "settings": { "password": null, "file_encryption_is_enabled": false, "file_preview_is_enabled": true, "is_removed_branding": false, "custom_css": "tester", "custom_js": "" }, "notifications": { "download": [] }, "total_files": 1, "total_size": 999999, "pageviews": 1, "downloads": 1, "downloads_limit": 0, "expiration_datetime": null, "last_datetime": null, "datetime": "2025-12-11 15:02:14" }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://dev.yocado.com/api/transfers?&page=1", "last": "https://dev.yocado.com/api/transfers?&page=1", "next": null, "prev": null, "self": "https://dev.yocado.com/api/transfers?&page=1" } }
GET https://dev.yocado.com/api/transfers/{transfer_id}
curl --request GET \
--url 'https://dev.yocado.com/api/transfers/{transfer_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "user_id": 1, "project_id": 0, "uploader_id": "f528764d624db129b32c21fbca0cb8d6", "pixels_ids": [], "files_ids": [ 1,2,3 ], "name": "Example", "description": "Example", "type": "link", "email_to": null, "url": "example", "settings": { "password": null, "file_encryption_is_enabled": false, "file_preview_is_enabled": true, "is_removed_branding": false, "custom_css": "tester", "custom_js": "" }, "notifications": { "download": [] }, "total_files": 1, "total_size": 999999, "pageviews": 1, "downloads": 1, "downloads_limit": 0, "expiration_datetime": null, "last_datetime": null, "datetime": "2025-12-11 15:02:14" } }
POST https://dev.yocado.com/transfer/create_api
Parameter Details Beschreibung
uploaded_files Erforderlich Array Ganze Zahl Array mit UUIDs für alle hochgeladenen Dateien, die an diesen Transfer angehängt werden sollen.
type Wahlweise String Erlaubte Werte: link , email
email_to Wahlweise String Verfügbar, wenn: type = email
name Wahlweise String -
description Wahlweise String -
url Wahlweise String -
domain_id Wahlweise Ganze Zahl -
project_id Wahlweise Ganze Zahl -
pixels_ids Wahlweise Array Ganze Zahl -
download_notification_handlers_ids Wahlweise Array Ganze Zahl -
expiration_datetime Wahlweise String Y-m-d H:i:s
downloads_limit Wahlweise Ganze Zahl -
password Wahlweise String -
file_encryption_is_enabled Wahlweise Boolean -
file_preview_is_enabled Wahlweise Boolean -
gallery_file_preview_is_enabled Wahlweise Boolean -
is_removed_branding Wahlweise Boolean -
custom_css Wahlweise String -
custom_js Wahlweise String -
curl --request POST \
--url 'https://dev.yocado.com/transfer/create_api' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'uploaded_files[]=de09be56-639f-4213-863b-5ea1aa065970' \
--form 'name=Example name' \
--form 'description=Example description' \
{ "data": { "id": 1, "download_url": "https://dev.yocado.com/49fkabj", "view_url": "https://dev.yocado.com/transfer/1", } }
POST https://dev.yocado.com/api/transfers/{transfer_id}
Parameter Details Beschreibung
name Wahlweise String -
description Wahlweise String -
url Wahlweise String -
domain_id Wahlweise Ganze Zahl -
project_id Wahlweise Ganze Zahl -
pixels_ids Wahlweise Array Ganze Zahl -
download_notification_handlers_ids Wahlweise Array Ganze Zahl -
expiration_datetime Wahlweise String Y-m-d H:i:s
downloads_limit Wahlweise Ganze Zahl -
file_preview_is_enabled Wahlweise Boolean -
gallery_file_preview_is_enabled Wahlweise Boolean -
is_removed_branding Wahlweise Boolean -
custom_css Wahlweise String -
custom_js Wahlweise String -
curl --request POST \
--url 'https://dev.yocado.com/api/transfers/{transfer_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=transfer.com' \
{ "data": { "id": 1 } }
DELETE https://dev.yocado.com/api/transfers/{transfer_id}
curl --request DELETE \
--url 'https://dev.yocado.com/api/transfers/{transfer_id}' \
--header 'Authorization: Bearer {api_key}' \