---
title: "Get Sms Log"
method: GET
path: "/sms/logs/{sms_id}"
tags: ["SMS", "sms"]
---

# Get Sms Log

`GET /sms/logs/{sms_id}`

Get a specific SMS log record.

Args:
    sms_id: SMS log ID
    db_session: Database session
    current_user: Authenticated user

Returns:
    SMS log record

## Path parameters

- `sms_id` string, uuid, required

## Response `200`

Successful Response

- SMSLogResponse — Response containing SMS log details.
  - `sms_id` string, uuid, required
  - `customer_id` string, uuid, required
  - `to_number` string, required
  - `from_number` string, required
  - `message_body` string, required
  - `twilio_message_sid` string, nullable
  - `status` string, nullable
  - `sent_at` string, date-time, nullable
  - `created_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/openintake/apis/fastapi.md) · [All operations](https://skmtc.dev/openintake/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openintake/fastapi/revisions/b642b91e0a5c/schema)
