tagsΒΆ

It return a list of tags under a designation

  • URL Params

No url params

  • Data Params
{
  "task_id" : "tags",
  "data" : {
      "associated":"//the id of the institute, type string",
      "designation":"//the id of the designation, type string"
  }
}
  • Success Response:

When successfully stored associations data in database

  • Code: 200
  • Content:
{
  "_id": "5ddd62ffd8639286d599dcd7",
  "title": "Parent",
  "tags": [
      {
          "_id": "5ddd62ffd8639286d599dcd8",
          "title": ""
      },
      {
          "_id": "5ddd62ffd8639286d599dcdc",
          "title": ""
      }
  ]
}
  • Error Response:

When failed to store associations

  • Code: 200
  • Content:
{
  "...":"TODO"
}
  • Sample Call:
$.ajax({
url: "/service_request",
dataType: "json",
type : "POST",
contentType: 'application/json',
beforeSend: function (xhr) {
  xhr.setRequestHeader ("Authorization", "Token " + "<your token here>");
},
data: JSON.stringify({
  "service_name": "education",
  "task":   {
      "task_id" : "tags",
      "data" : {
          "associated":"5ddd62ffd8639286d599dcd6",
          "designation":"5ddd62ffd8639286d599dcd7"
      }
  }
}),
success : function(r) {
    console.log(r);
}
});
  • Notes:

No additional notes