Show Keyword - GeekBrainsCommunityofAlumni/Statistics GitHub Wiki

Show keyword

  • URL: /keyword/{person_id}
  • Method: GET
  • URL Params:
    • Required: person_id=[integer]
  • Data Params: None
  • Success Response:
    • Code: 200
    • Content: [ { "id": 3, "name": "Навального", "person": { "id": 3, "name": "Навальный" } }, { "id": 4, "name": "Навальному", "person": { "id": 3, "name": "Навальный" } } ]
  • Error Response:
    • Code: 404
    • Content: {errorMessage: "Keyword not found"}
  • Simple Call:
    $.ajax({
      url: "/keyword/1",
      dataType: "json",
      type : "GET",
      success : function(r) {
        console.log(r);
      }
    });
⚠️ **GitHub.com Fallback** ⚠️