You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The parameter and filter $receiver for the method getOutgoingMessages() in the class SmsApi is never used. We can't filter by receiver and we will always get every SMS.
Works fine if we add the following code before sending the request :
if (!is_null($receiver)) {
$parameters['receiver'] = $receiver;
}
The parameter and filter
$receiver
for the method getOutgoingMessages() in the class SmsApi is never used. We can't filter by receiver and we will always get every SMS.Works fine if we add the following code before sending the request :
More information on
/sms/{serviceName}/outgoing
request parameters here : https://api.ovh.com/console/#/sms/%7BserviceName%7D/outgoing#GETThe text was updated successfully, but these errors were encountered: