Objective met

Fires as and when a user has met a permanent learning objective.

⚠️ Deprecation warning

This notification is deprecated and is being replaced with the OBJECTIVE_BECAME_OK notification. Existing recipients of this message will continue to receive it, but this notification will no longer be offered to new users. Please contact support@drillster.com if you require assistance.

Example target URL:

POST https://www.example.com/drillster/OBJECTIVE_MET

Payload

An PUSH ObjectiveMetEvent object.

Example

Objective contents matching the contents of a course contained in the group where the objective was created:

{
  "evaluationDate": "2015-07-28T09:23:57Z",
  "met": true,
  "proficiency": 81,
  "user": {
    "id": "CkGyUQ2b5mNHxyCqkzflKg",
    "name": "John Smith",
    "emailAddress": "john@drillster.com",
    "thirdPartyIds": [{
      "thirdParty": "EXAMPLE",
      "id": "abc123"
    }]
  },
  "objective": {
    "drills": [
      {
        "id": "_Q4GyCkGlieEEqef_0SKbA",
        "name": "Factory safety procedures",
        "type": "DRILL",
        "version": "bbV3"
      },
      {
        "id": "123yCkGlieXXgef_0ZKbB",
        "name": "Factory first aid drill",
        "type": "DRILL",
        "version": "ccV4"
      }
    ],
    "playables": [
      {
        "id": "ABCyCkGlieEEqef_0SXYZ",
        "name": "Safety and First Aid course",
        "type": "COURSE"
      }
    ],
    "fallingMinimumProficiency": 70,
    "id": "LIv2wQYYORusdy4E4BG1mQ",
    "minimumProficiency": 80,
    "reviewDate": "2015-07-19T10:15:30Z",
    "type": "PERMANENT",
    "usersLink": {
      "type": "GROUP",
      "id": "S4FEPc9HEQ1toGRd30fDb4LIKI_Q2nyGA3fSJTbellM"
    }
  }
}

Objective contents that do not match the contents of a course contained in the group where the objective was created:

{
  "evaluationDate": "2015-07-28T09:23:57Z",
  "met": true,
  "proficiency": 81,
  "user": {
    "id": "CkGyUQ2b5mNHxyCqkzflKg",
    "name": "John Smith",
    "emailAddress": "john@drillster.com",
    "thirdPartyIds": [{
      "thirdParty": "EXAMPLE",
      "id": "abc123"
    }]
  },
  "objective": {
    "drills": [
      {
        "id": "_Q4GyCkGlieEEqef_0SKbA",
        "name": "Factory safety procedures",
        "type": "DRILL",
        "version": "bbV3"
      }
    ],
    "playables": [
      {
        "id": "_Q4GyCkGlieEEqef_0SKbA",
        "name": "Factory safety procedures",
        "type": "DRILL"
      }
    ],
    "fallingMinimumProficiency": 70,
    "id": "LIv2wQYYORusdy4E4BG1mQ",
    "minimumProficiency": 80,
    "reviewDate": "2015-07-19T10:15:30Z",
    "type": "PERMANENT",
    "usersLink": {
      "type": "GROUP",
      "id": "S4FEPc9HEQ1toGRd30fDb4LIKI_Q2nyGA3fSJTbellM"
    }
  }
}