Output checks
Retire output check
Retire a verifier.
DELETE
/
v1
/
verifiers
/
{verifierId}
Retire output check
curl --request DELETE \
--url https://api.getmillwork.dev/v1/verifiers/{verifierId} \
--header 'Authorization: Bearer <token>'const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getmillwork.dev/v1/verifiers/{verifierId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"instance": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": 123,
"title": "<string>",
"type": "<string>",
"detail": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>"
}
],
"retry_after_s": 123
}{
"instance": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": 123,
"title": "<string>",
"type": "<string>",
"detail": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>"
}
],
"retry_after_s": 123
}⌘I
Retire output check
curl --request DELETE \
--url https://api.getmillwork.dev/v1/verifiers/{verifierId} \
--header 'Authorization: Bearer <token>'const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getmillwork.dev/v1/verifiers/{verifierId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"instance": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": 123,
"title": "<string>",
"type": "<string>",
"detail": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>"
}
],
"retry_after_s": 123
}{
"instance": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": 123,
"title": "<string>",
"type": "<string>",
"detail": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>"
}
],
"retry_after_s": 123
}