Get message activities

Retrieves the activity log for a specific message. Activities track the message lifecycle including acceptance, processing, sending, delivery, and any errors.

GET
/v3/messages/{id}/activities

Path Parameters

id*string

Message ID from route parameter

Formatuuid

Header Parameters

x-profile-id?string

Profile UUID to scope the request to a child profile. Only organization API keys can use this header. The profile must belong to the calling organization.

Formatuuid

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://api.sent.dm/v3/messages/8ba7b830-9dad-11d1-80b4-00c04fd430c8/activities"
{
  "success": true,
  "data": {
    "message_id": "8ba7b830-9dad-11d1-80b4-00c04fd430c8",
    "activities": [
      {
        "status": "DELIVERED",
        "description": "Message delivered to recipient",
        "timestamp": "2026-03-11T21:25:50.1716529+00:00",
        "price": "0.0450",
        "active_contact_price": "0.0050"
      },
      {
        "status": "SENT",
        "description": "Message sent via SMS",
        "timestamp": "2026-03-11T21:20:50.1717294+00:00",
        "price": "0.0450",
        "active_contact_price": "0.0050"
      },
      {
        "status": "PROCESSED",
        "description": "Message processed and queued for sending",
        "timestamp": "2026-03-11T21:19:50.1717298+00:00",
        "price": "0.0450",
        "active_contact_price": "0.0050"
      },
      {
        "status": "ACCEPTED",
        "description": "Message accepted for processing",
        "timestamp": "2026-03-11T21:18:50.17173+00:00",
        "price": null,
        "active_contact_price": null
      }
    ]
  },
  "error": null,
  "meta": {
    "request_id": "req_7X9zKp2jDw",
    "timestamp": "2026-03-11T21:50:50.1717951+00:00",
    "version": "v3"
  }
}
{
  "success": true,
  "error": {
    "code": "string",
    "message": "string",
    "details": {
      "property1": [
        "string"
      ],
      "property2": [
        "string"
      ]
    },
    "doc_url": "string"
  },
  "meta": {
    "request_id": "string",
    "timestamp": "2019-08-24T14:15:22Z",
    "version": "string"
  }
}
Empty
Empty
{
  "success": false,
  "data": null,
  "error": {
    "code": "RESOURCE_003",
    "message": "Message not found",
    "details": null,
    "doc_url": "https://docs.sent.dm/errors/RESOURCE_003"
  },
  "meta": {
    "request_id": "req_7X9zKp2jDw",
    "timestamp": "2026-03-11T21:50:50.1717988+00:00",
    "version": "v3"
  }
}
{
  "success": false,
  "data": null,
  "error": {
    "code": "INTERNAL_001",
    "message": "An unexpected error occurred while retrieving message activities.",
    "details": null,
    "doc_url": "https://docs.sent.dm/errors/INTERNAL_001"
  },
  "meta": {
    "request_id": "req_7X9zKp2jDw",
    "timestamp": "2026-03-11T21:50:50.1717994+00:00",
    "version": "v3"
  }
}