Skip to main content
GET
/
text
/
status
/
{messageId}
Get text delivery status
curl --request GET \
  --url https://collectwiseapi.com/text/status/{messageId} \
  --header 'collectwise_key: <api-key>'
import requests

url = "https://collectwiseapi.com/text/status/{messageId}"

headers = {"collectwise_key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {collectwise_key: '<api-key>'}};

fetch('https://collectwiseapi.com/text/status/{messageId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://collectwiseapi.com/text/status/{messageId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"collectwise_key: <api-key>"
],
]);

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

curl_close($curl);

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

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://collectwiseapi.com/text/status/{messageId}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("collectwise_key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://collectwiseapi.com/text/status/{messageId}")
.header("collectwise_key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://collectwiseapi.com/text/status/{messageId}")

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

request = Net::HTTP::Get.new(url)
request["collectwise_key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "messageId": "1b1f0a9e-6f4e-4f4b-9a2e-1f2d3c4b5a69",
  "status": "Delivered",
  "delivered": true,
  "failed": false,
  "failureClassification": null,
  "retryRecommended": false,
  "createdAt": "2026-06-12T18:21:09.000Z",
  "updatedAt": "2026-06-12T18:21:14.000Z"
}
{
"error": "Message not found"
}
{
"error": "Too many requests"
}

Authorizations

collectwise_key
string
header
required

Path Parameters

messageId
string
required

The messageId returned by the send endpoint.

Response

Current delivery status.

messageId
string
required
status
string
required

Carrier status: Queued, Sent, Delivered, or Rejected / Failed / Undelivered on failure.

delivered
boolean
required
failed
boolean
required
failureClassification
enum<string> | null

On failed messages: FATAL (do not retry), NON_FATAL (transient, retry may succeed), or null when the carrier reason is unrecognized.

Available options:
FATAL,
NON_FATAL

True when the failure is NON_FATAL and a retry may succeed.

createdAt
string<date-time>
updatedAt
string<date-time>