Get all groups
Base URL:
GET: https://api.smsgatewayapi.com/v1/groups
Parameter | Input | Description | |
---|---|---|---|
client_id | API client ID | Can be found in your API documentation | Required |
client_secret | API client secret | Can be found in your API documentation | Required |
limit | Maximum results per page | Default up to 1000, can't be bigger than 2000 | Optional |
page | Page of results | Default up to 1 | Optional |
<?php $ch = curl_init(); $url = "https://api.smsgatewayapi.com/v1/groups"; $client_id = "XXX"; // Your API client ID (required) $client_secret = "YYY"; // Your API client secret (required) curl_setopt($ch, CURLOPT_URL, "$url"); curl_setopt($ch, CURLOPT_POST, false); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_VERBOSE, true); curl_setopt($ch, CURLOPT_HTTPHEADER, [ "X-Client-Id: $client_id", "X-Client-Secret: $client_secret", "Content-Type: application/json", ]); $response = curl_exec($ch); ?>
Example success response:
[ { "ID": "fav", "name": "Favorites" }, { "ID": "115113", "name": "marketing" } ]