risk profile api

This commit is contained in:
jayesh
2024-04-08 15:05:50 +05:30
parent abbd468500
commit fc7df4c7e7
11 changed files with 649 additions and 59 deletions

View File

@@ -1,4 +1,8 @@
class ApiUrls {
// PIE BASE URL FOR SMALL CASE --> NEED TO BE UPDATED
static const String pieBase = "https://app.piadvisors.in/";
//Base URL
static const base = "http://192.168.50.117/Trader_circuit/api/";
@@ -13,4 +17,9 @@ class ApiUrls {
//FAQ API
static String faqApi = "${base}getFaq";
//RISK PROFILE API
static String getRiskProfileQuestionAnswerApi = "${base}riskProfileQueAns";
static String addRiskProfileQuestionAnswerApi =
"${base}getRiskProfileQuestionAnswerApi";
}