Skip to content

Files

Latest commit

a6e0e68 · Dec 26, 2022

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Dec 26, 2022
Dec 26, 2022
Dec 26, 2022
Dec 26, 2022
Dec 26, 2022

Using APIGW

  1. HTTP GET
curl --location --request GET 'http://localhost:9090/student-service/api/student/getById/1' \
--header 'Authorization: ABC'

Response:

{
    "id": 1,
    "firstName": "Raj",
    "lastName": "Dave",
    "email": "raj_dave@yahoo.com",
    "addressResponse": {
        "addressId": 1,
        "street": "Delhi",
        "city": "Happy Street"
    }
}