Get screening result
curl --request GET \
--url https://api.maalbar.dk/v1/screenings/{screeningPublicId}/result \
--header 'X-Api-Key: <api-key>'const url = 'https://api.maalbar.dk/v1/screenings/{screeningPublicId}/result';
const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"error": "Invalid request parameters"
}{
"error": "Authentication required"
}{
"error": "Resource not found"
}{
"error": "An unexpected error occurred"
}Screenings
Get screening result
GET
/
screenings
/
{screeningPublicId}
/
result
Get screening result
curl --request GET \
--url https://api.maalbar.dk/v1/screenings/{screeningPublicId}/result \
--header 'X-Api-Key: <api-key>'const url = 'https://api.maalbar.dk/v1/screenings/{screeningPublicId}/result';
const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"error": "Invalid request parameters"
}{
"error": "Authentication required"
}{
"error": "Resource not found"
}{
"error": "An unexpected error occurred"
}