Encryption standard : AES-256-CBC sha256: jqR3rGT4NTZnWnc30YOBEMAmrVvYUjKY iv: jqR3rGT4NTZnWnc3 api key : NODETRAINING18042023 encryptionurl:- http://13.235.173.222/practical/api/enc_dec.php Note: Encrypt the token provided in response of login/signup and use in the products api Note: Pass the body in encrypted form and you will get the response in encrypted form which needs to be decrypted first ////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////// Api name:"signup" url:"http://13.235.173.222:3000/api/v1/auth/signup" type:"post" headers: api-key: encrypted apikey body:"{"name": "Testname","email": "testemail@mail.com","password": "Test@1234"}" response:"{"user_id": 1,"name": "Testname","email": "testemail@mail.com","token": "5TlnE2fsFNAmcANvBKqPbexNZPkLqSJv9TQiicHd79YyqCJX2zsRBDUIb62UOSmw"}" note:"use the token provided in response of login/signup in the 'token' header in all apis(except login/signup)" ////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////// Api name:"login" url:"http://13.235.173.222:3000/api/v1/auth/login" type:"get" headers: api-key: encrypted apikey body:"{"email":"testemail@mail.com","password":"Test@1234"}" response:"{"user_id": 1,"name": "Testname","email": "testemail@mail.com","token": "5TlnE2fsFNAmcANvBKqPbexNZPkLqSJv9TQiicHd79YyqCJX2zsRBDUIb62UOSmw"}" note:"use the token provided in response of login/signup in the 'token' header in all apis(except login/signup)" ////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////// Api name:"products" url:"http://13.235.173.222:3000/api/v1/product/allproducts" type:"get" headers: api-key: encrypted apikey token: pass encrypted token response:"{"user_id": 1,"name": "Testname","email": "testemail@mail.com","token": "5TlnE2fsFNAmcANvBKqPbexNZPkLqSJv9TQiicHd79YyqCJX2zsRBDUIb62UOSmw"}" note:"use the token provided in response of login/signup in the 'token' header in all apis(except login/signup)"