chore(android): update receive sms endpoint

This commit is contained in:
isra el
2024-11-25 10:47:22 +03:00
parent 4faf422d3f
commit c3a21ba69f

View File

@@ -19,6 +19,6 @@ public interface GatewayApiService {
@PATCH("gateway/devices/{deviceId}")
Call<RegisterDeviceResponseDTO> updateDevice(@Path("deviceId") String deviceId, @Header("x-api-key") String apiKey, @Body() RegisterDeviceInputDTO body);
@POST("gateway/devices/{deviceId}/receiveSMS")
@POST("gateway/devices/{deviceId}/receive-sms")
Call<SMSForwardResponseDTO> sendReceivedSMS(@Path("deviceId") String deviceId, @Header("x-api-key") String apiKey, @Body() SMSDTO body);
}