Package com.sinch.sdk.domains.sms
Interface InboundsService
-
public interface InboundsServiceInbounds ServiceInbounds, or Mobile Originated (MO) messages, are incoming messages. Inbound messages can be listed and retrieved like batch messages and they can also be delivered by callback requests like delivery reports.
- Since:
- 1.0
- See Also:
- https://developers.sinch.com/docs/sms/api-reference/sms/tag/Inbounds/
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Inbound<?>get(String inboundId)Retrieve inbound messageInboundsListResponselist(InboundsListRequestParameters parameters)List incoming messages
-
-
-
Method Detail
-
list
InboundsListResponse list(InboundsListRequestParameters parameters) throws ApiException
List incoming messagesWith the list operation, you can list all inbound messages that you have received. This operation supports pagination. Inbounds are returned in reverse chronological order.
- Parameters:
parameters- Filtering parameters- Returns:
- Incoming messages
- Throws:
ApiException- Since:
- 1.0
- See Also:
- https://developers.sinch.com/docs/sms/api-reference/sms/tag/Delivery-reports/#tag/Delivery-reports/operation/getDeliveryReports
-
get
Inbound<?> get(String inboundId) throws ApiException
Retrieve inbound messageThis operation retrieves a specific inbound message with the provided inbound ID
- Parameters:
inboundId- The inbound ID found when listing inbound messages- Returns:
- Inbound messages-
- Throws:
ApiException- Since:
- 1.0
- See Also:
- https://developers.sinch.com/docs/sms/api-reference/sms/tag/Inbounds/#tag/Inbounds/operation/RetrieveInboundMessage
-
-