fbpx
Search
Close this search box.
Search
Close this search box.

< / >

APIs SMS

1. Sending SMS message En

URL: https://wv{{wolkvox_server}}.wolkvox.com/api/v2/sms.php?api=send_sms Description: Sending SMS message. Benefit: Allow sending a message quickly to a phone from external applications. How it works:
  • Consuming this API is done through POST method.
  • In the json, parameters must be added according to the operation or process to be performed.
  • To consume this API, you must replace {{wolkvox_server}} in the URL with the server‘s nomenclature of the operation.
  • The wolkvoxtoken header must be used to make use of the authorization token.
  • Keep in mind that the same token cannot be consumed simultaneously, so you can program the next API to be consumed when the result of the previous one is successful.
REQUEST
NAME DESCRIPTION TYPE
telephone Destination phone number String
message Message to send String
RESPONSE
NAME DESCRIPTION TYPE
code Error code Int
error Name of error String
msg Explanation of error String
Posibles códigos de respuesta
				
					$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL =&gt; 'https://wv{{wolkvox_server}}.wolkvox.com/api/v2/sms.php?api=send_sms',
  CURLOPT_RETURNTRANSFER =&gt; true,
  CURLOPT_ENCODING =&gt; '',
  CURLOPT_MAXREDIRS =&gt; 10,
  CURLOPT_TIMEOUT =&gt; 0,
  CURLOPT_FOLLOWLOCATION =&gt; true,
  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST =&gt; 'POST',
  CURLOPT_POSTFIELDS =&gt;'{
    "telephone": "",
    "message": ""
}',
  CURLOPT_HTTPHEADER =&gt; array(
    'wolkvox-token: {{token}}',
    'Content-Type: application/json'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
				
			

RESPONSE

				
					{
    "code": 201,
    "error": null,
    "msg": "Message has been sent successfully"
}
				
			

Hacemos uso de cookies, si continúas navegando asumiremos que estás de acuerdo. Puede leer más sobre el uso de cookies en nuestras políticas de privacidad y tratamiento de datos personales

Hacemos uso de cookies, si continúas navegando asumiremos que estás de acuerdo. Puede leer más sobre el uso de cookies en nuestras políticas de privacidad y tratamiento de datos personales