AplasAplas API Reference

Retrieve a filespec

GET
/filespec/{fileId}

Authorization

BearerAuth
AuthorizationBearer <token>

API authentication via Authorization: Bearer <your-api-key>. Obtain your API key from Config → API in the Aplas web app.

In: header

Path Parameters

fileId*string

The id of the file

Response Body

*/*

*/*

curl -X GET "https://api.au.aplas.com/api/v2/filespec/string"
{
  "fileId": "id",
  "fileName": "file.png",
  "fileType": "image/png",
  "imgThumbnail": "data:image/png;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKC...",
  "imgHeight": 640,
  "imgWidth": 640
}
{
  "code": 500,
  "message": "Internal server error"
}