Skip to main content
GET
https://sendazi.com/api/v1
/
message-templates
List Message Templates
curl --request GET \
  --url https://sendazi.com/api/v1/message-templates
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://sendazi.com/api/v1/message-templates",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests

url = "https://sendazi.com/api/v1/message-templates"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://sendazi.com/api/v1/message-templates', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
HttpResponse<String> response = Unirest.get("https://sendazi.com/api/v1/message-templates")
.asString();
const url = 'https://sendazi.com/api/v1/message-templates';
const options = {method: 'GET'};

fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));
require 'uri'
require 'net/http'

url = URI("https://sendazi.com/api/v1/message-templates")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "success": true,
  "data": [
    {
      "id": 1,
      "uuid": "15c981c3-ae58-45b0-8958-39cfbcbe943e",
      "name": "Welcome Message",
      "content": "Hello [First Name]! Welcome to our service.",
      "type": "sms",
      "created_at": "2026-01-01T00:00:00.000000Z",
      "updated_at": "2026-01-01T00:00:00.000000Z"
    },
    {
      "id": 2,
      "uuid": "5ef2c8c8-e62d-4c43-9b59-09f2173da81a",
      "name": "Order Confirmation",
      "content": "Hi [First Name], your order #[Order ID] has been confirmed!",
      "type": "sms",
      "created_at": "2026-01-02T00:00:00.000000Z",
      "updated_at": "2026-01-02T00:00:00.000000Z"
    }
  ]
}
{
  "success": true,
  "data": [
    {
      "id": 1,
      "uuid": "15c981c3-ae58-45b0-8958-39cfbcbe943e",
      "name": "Welcome Message",
      "content": "Hello [First Name]! Welcome to our service.",
      "type": "sms",
      "created_at": "2026-01-01T00:00:00.000000Z",
      "updated_at": "2026-01-01T00:00:00.000000Z"
    },
    {
      "id": 2,
      "uuid": "5ef2c8c8-e62d-4c43-9b59-09f2173da81a",
      "name": "Order Confirmation",
      "content": "Hi [First Name], your order #[Order ID] has been confirmed!",
      "type": "sms",
      "created_at": "2026-01-02T00:00:00.000000Z",
      "updated_at": "2026-01-02T00:00:00.000000Z"
    }
  ]
}