GET
/
fm
/
api
/
v1
/
size
curl --request GET \
  --url https://your-engine-url/fm/api/v1/size/ \
  --header 'Authorization: <api-key>'
{
  "max_size": 0,
  "used_size": 0,
  "avail_size": 0
}

Authorizations

Authorization
string
header
required

Enter: 'Bearer <JWT>', where JWT is the access token. Example: Bearer access_token_comes_here

Response

200 - application/json
Successful Response
max_size
integer
default:0
used_size
integer
default:0
avail_size
integer
default:0