Delete

Deletes an external education from specified user's profile.

Request

  • HTTP Verb: DELETE
  • URI: /user/{user_id}/externalEducation/{id}

Query Parameters

  • user_id: user identifier. It could be either user id, user email or custom member_id.
  • id: externalEducation id.

You need the latest version of the PHP SDK for this, located here: https://github.com/wcealliance/php-sdk

Request example

$API->deleteUserExternalEducation(1234, 1);

Output Example

array(
     "id" => 1,
     "name" => "Really Awesome education on APIs",
     "date_completion" => "2017-05-12",
     "duration" => "02:15",
     "cpd_hours" => "2.25",
     "certificate_url" => "",
     "has_exam" => 0,
     "exam_score" => "",
     "exam_score_out_of" => "",
     "exam_attempts" => "0"
   )
)