Skip to main content
GET
/
notifications
/
{id}
/
{submissionId}
/
checks
JavaScript
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
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required
submissionId
string
required

Response

200 - application/json
checks
Check · object[]
required