Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
200 - application/json
import Courier from '@trycourier/courier';
const client = new Courier({
apiKey: 'My API Key',
});
const checks = await client.notifications.checks.list('submissionId', { id: 'id' });
console.log(checks.checks);{
"checks": [
{
"id": "<string>",
"status": "RESOLVED",
"type": "custom",
"updated": 123
}
]
}import Courier from '@trycourier/courier';
const client = new Courier({
apiKey: 'My API Key',
});
const checks = await client.notifications.checks.list('submissionId', { id: 'id' });
console.log(checks.checks);{
"checks": [
{
"id": "<string>",
"status": "RESOLVED",
"type": "custom",
"updated": 123
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes