-
Notifications
You must be signed in to change notification settings - Fork 9
Show Person
ZeroCool142 edited this page Jun 20, 2017
·
2 revisions
- URL: /person/{id}
- Method: GET
-
URL Params:
-
Required:
id=[integer]
-
Required:
- Data Params: None
-
Success Response:
-
Code: 200
-
Content:
{id: 1, name: "Putin"}
-
Code: 200
-
Error Response:
-
Code: 404
-
Content:
{errorMessage: "User not found"}
-
Code: 404
- Simple Call:
$.ajax({
url: "/person/1",
dataType: "json",
type : "GET",
success : function(r) {
console.log(r);
}
});