get_associated_instituesΒΆ

It return a list of associated institutes for the user

  • URL Params

No url params

  • Data Params
{
  "task_id" : "get_associated_institues",
  "data" : {} //An empty object
}
  • Success Response:

Return a list of associated institutes

  • Code: 200
  • Content:
{
    "associated": [
        {
            "_id": "//id of the institute",
            "short_name": "//short name of the institute",
            "long_name": "long name of the institute",
            "designations": [
                {
                    "_id": "//if of the designation",
                    "title": "//title of the designation"
                }
            ]
        }
    ]
}
  • Error Response:

When failed to store associations

  • Code: 200
  • Content:
{
  "...":"//click the appropriate task name for the response params"
}
  • 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": "get_associated_institues",
      "data": {}
  }
}),
success : function(r) {
    console.log(r);
}
});
  • Notes:

No additional notes