ReluzCap Web Service


Click here for a complete list of operations.

EnviaSMSConcatenadoSemAcento

Envia uma mensagem de texto concatenado sem acento para um celular. O campo Serie deve conter um número entre 0 e 255 e deve ser único para cada SMS concatenado enviado, sendo acrescido de 1 a cada envio, e quando atinge 255, comece com 0 (zero) novamente. Se essa mensagem for mais longa que 140 caracteres, ela será dividida em várias mensagens de até 140 caracteres e enviada de forma a chegar concatenada, em uma única mensagem, no celular de destino, desde que a operadora suporte concatenação. Se não houver suporte da operadora, a mensagem será enviada separadamente com + separando as mensagens. Tamanho máximo da mensagem = 4096 caracteres. Retorna OK n (n é o número de SMS enviados pela operação), NOK (usuário ou senha inválidos, ou mensagem maior que 4096 caracteres), Erro ou NA (não disponível).

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
NumUsu:
Senha:
SeuNum:
Serie:
Celular:
Mensagem:

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /reluzcap/wsreluzcap.asmx HTTP/1.1
Host: webservices.twwwireless.com.br
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "https://www.twwwireless.com.br/reluzcap/wsreluzcap/EnviaSMSConcatenadoSemAcento"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <EnviaSMSConcatenadoSemAcento xmlns="https://www.twwwireless.com.br/reluzcap/wsreluzcap">
      <NumUsu>string</NumUsu>
      <Senha>string</Senha>
      <SeuNum>string</SeuNum>
      <Serie>int</Serie>
      <Celular>string</Celular>
      <Mensagem>string</Mensagem>
    </EnviaSMSConcatenadoSemAcento>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <EnviaSMSConcatenadoSemAcentoResponse xmlns="https://www.twwwireless.com.br/reluzcap/wsreluzcap">
      <EnviaSMSConcatenadoSemAcentoResult>string</EnviaSMSConcatenadoSemAcentoResult>
    </EnviaSMSConcatenadoSemAcentoResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /reluzcap/wsreluzcap.asmx HTTP/1.1
Host: webservices.twwwireless.com.br
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <EnviaSMSConcatenadoSemAcento xmlns="https://www.twwwireless.com.br/reluzcap/wsreluzcap">
      <NumUsu>string</NumUsu>
      <Senha>string</Senha>
      <SeuNum>string</SeuNum>
      <Serie>int</Serie>
      <Celular>string</Celular>
      <Mensagem>string</Mensagem>
    </EnviaSMSConcatenadoSemAcento>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <EnviaSMSConcatenadoSemAcentoResponse xmlns="https://www.twwwireless.com.br/reluzcap/wsreluzcap">
      <EnviaSMSConcatenadoSemAcentoResult>string</EnviaSMSConcatenadoSemAcentoResult>
    </EnviaSMSConcatenadoSemAcentoResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /reluzcap/wsreluzcap.asmx/EnviaSMSConcatenadoSemAcento?NumUsu=string&Senha=string&SeuNum=string&Serie=string&Celular=string&Mensagem=string HTTP/1.1
Host: webservices.twwwireless.com.br
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="https://www.twwwireless.com.br/reluzcap/wsreluzcap">string</string>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /reluzcap/wsreluzcap.asmx/EnviaSMSConcatenadoSemAcento HTTP/1.1
Host: webservices.twwwireless.com.br
Content-Type: application/x-www-form-urlencoded
Content-Length: length

NumUsu=string&Senha=string&SeuNum=string&Serie=string&Celular=string&Mensagem=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="https://www.twwwireless.com.br/reluzcap/wsreluzcap">string</string>