Media files are downloaded using HTTP GET. The following HTTP headers must be set in the download request:
Content-Type
= application/json
X-Token
= "<Token>"
Use the following URL format to download media files:
https://<nandboxBotServer>:<port>/nandbox/download/<media_id>
📌 Example:
<https://w1.nandbox.net:8080/nandbox/download/123456789.jpg>
media_id
is the unique identifier for the media file to be downloaded.X-Token
) is provided in the request header.🟢 200
{
"<media binary content>"
}
🔴 404
{
"message" : "Not Found"
}