Web API response format code example
Example 1: api response format
{ aps: { alert: { "loc-key": "REQUEST_FORMAT", "loc-args": [@message] }, sound: "default", id: @id, request_id: @request_id, push_type: push_type, payload: @payload }, pn_gcm: { data: { message: @message, } }}
Example 2: api response format
GET http://localhost:60464/api/student HTTP/1.1
User-Agent: Fiddler
Host: localhost:1234
Accept: application/json
Example 3: api response format
public class Student
{
public int Id { get; set; }
public string Name { get; set; }
}
public class StudentController : ApiController
{
public Student Post(Student student)
{
var insertedStudent = SaveStudent(student);
return insertedStudent;
}
}
Example 4: api response format
{ "success": true, "message": "Category deleted successfully", "data": {}}