sending data on server..

hii..
my project is send data on server. ans the server address is

http://115.115.153.117:4044/api/Save/DustBinDetails?ID=8956217751&LT=20.3665645&LO=500.966545&DIST=25&TEMP=43434&S1=HI5656&S2=HO3232

so according to that my function is..

void send_data()
 {

    UART1_Write_CText("AT+HTTPINIT\r\n");                  // Initialize HTTP
    delay_ms(2000);
    UART1_Write_CText("AT+HTTPPARA=\"URL\",\"http://115.115.153.117:4044/api/Save/DustBinDetails?ID=8956217751&LT=20.3665645&LO=500.966545&DIST=17&TEMP=43434&S1=HI5656&S2=HO3232\"\r\n"); // Send PARA command
    delay_ms(3000);
     UART1_Write_CText("AT+HTTPPARA=\"CID\",1\r\n");
    delay_ms(3000);
    UART1_Write_CText("AT+HTTPACTION=1\r\n");
    delay_ms(25000);
    UART1_Write_CText("AT+HTTPTERM\r\n");
   delay_ms(3000);
 }

now instead of ip address i want to use web..

https://ghantagadi.in:444/api/Save/DustBinDetails?ID=0001&LT=20.3665645&LO=500.966545&DIST=25&TEMP=43434&S1=HI5656&S2=HO3232

it is possible by above link , if yes, how do edit httppara command..
thanking you.

Hi Ykn,
Unfortunately this not currently possible using the Arduino SIM as they are configured to only connect to Arduino cloud. I would suggest that you raise a ticket to query if it is possible to have your end point white listed.

Rob