Search APIs helpdesk

Requests

You are here:

Methods:

  • GET method
  • POST method – form
  • POST method – json

GET method

https://sms.gretor.net/api/1.0/simple/info?application_id=<APPLICATION_ID>&application_token=<APPLICATION_TOKEN

POST method – application/x-www-form-urlencoded

POST /api/1.0/simple/info HTTP/1.1
Host: sms.gretor.net
Content-Type: application/x-www-form-urlencoded
Cache-Control: no-cache

application_id=<APPLICATION_ID>&application_token=<APPLICATION_TOKEN>

POST method – application/json

POST /api/1.0/simple/info HTTP/1.1
Host: sms.gretor.net
Content-Type: application/json
Cache-Control: no-cache

{
    "application_id": "<APPLICATION_ID>", 
    "application_token": "<APPLICATION_TOKEN>"
}

 

Go to Top