19 lines
1.0 KiB
Dart
19 lines
1.0 KiB
Dart
class ApiUrls {
|
|
// static const String baseUrl = 'https://cheminova-api-2.onrender.com/api/';
|
|
static const String baseUrl = 'https://api.cnapp.co.in';
|
|
static const String loginUrl = '/api/v1/user/login/';
|
|
static const String profileUrl = '/api/v1/user/details';
|
|
static const String forgetPasswordUrl = '/api/v1/user/password/forgot';
|
|
static const String changePasswordUrl = '/api/v1/user/password/update';
|
|
static const String fcmUrl = '/api/v1/user/fcm-token';
|
|
static const String getCategoryUrl = '/api/category/getCategories';
|
|
static const String getProductUrl = '/api/category/getCategories';
|
|
static const String getProductManualUrl = '/api/productmanual/getall';
|
|
static const String getKycUrl = '/api/kyc/getAll';
|
|
static const String getNotificationUrl = '/api/get-notification-pd';
|
|
static const String getPlacedOrderUrl ='/api/get-placed-order-pd';
|
|
static const String getSinglePlacedOrderUrl ='/api/get-single-placed-order-pd';
|
|
static const String placedOrderUrl ='${baseUrl}/api/order-place';
|
|
|
|
}
|