check file status about Antivirus and if corrected signed.
The unique identifier of the file to retrieve status.
Responses
Possible values: In Progress, Clean, Infected, Error, Signed
GET /api/v2/file-status/{uuid} HTTP/1.1
Accept: */*
curl -L \
--url '/api/v2/file-status/{uuid}' \
--header 'Accept: */*'
const response = await fetch('/api/v2/file-status/{uuid}', {
method: 'GET',
headers: {
"Accept": "*/*"
},
});
const data = await response.json();
import requests
response = requests.get(
"/api/v2/file-status/{uuid}",
headers={"Accept":"*/*"},
)
data = response.json()
In Progress
No content
No content