Skip to main content
GET
https://api.mindosoftware.com
/
api
/
v1
/
meta-templates
/
bulk-sends
curl -X GET "https://api.mindosoftware.com/api/v1/meta-templates/bulk-sends/?status=COMPLETED&created_after=2025-11-01&page=1&page_size=10" \
  -H "X-API-Key: mindo_xxxxxxxxxxxxxxxxxxxxxxxx"
{
  "count": 2,
  "next": null,
  "previous": null,
  "results": [
    {
      "id": "a3f2b8c9-4d5e-6f7a-8b9c-0d1e2f3a4b5c",
      "status": "COMPLETED",
      "template": {
        "id": 45,
        "template_name": "welcome_message",
        "language": "es",
        "status": "APPROVED"
      },
      "phone_number": {
        "id": 123,
        "display_phone_number": "+54 9 223 675-0780",
        "verified_name": "Mindo Software"
      },
      "total_recipients": 3,
      "sent_count": 3,
      "delivered_count": 2,
      "read_count": 1,
      "failed_count": 0,
      "pending_count": 0,
      "progress_percentage": 100.0,
      "created_at": "2025-11-16T21:30:00Z",
      "completed_at": "2025-11-16T21:30:28Z"
    },
    {
      "id": "b4c3d9e0-5f6a-7b8c-9d0e-1f2a3b4c5d6e",
      "status": "COMPLETED",
      "template": {
        "id": 46,
        "template_name": "order_confirmation",
        "language": "es",
        "status": "APPROVED"
      },
      "phone_number": {
        "id": 123,
        "display_phone_number": "+54 9 223 675-0780",
        "verified_name": "Mindo Software"
      },
      "total_recipients": 150,
      "sent_count": 150,
      "delivered_count": 142,
      "read_count": 98,
      "failed_count": 0,
      "pending_count": 0,
      "progress_percentage": 100.0,
      "created_at": "2025-11-15T14:00:00Z",
      "completed_at": "2025-11-15T14:09:30Z"
    }
  ]
}

Descripción

Devuelve una lista paginada de todos los envíos masivos realizados. Soporta filtros por estado, template y rango de fechas para facilitar la búsqueda.

Header de autenticación

X-API-Key
string
required
Tu API Key de Mindo. Formato: mindo_xxxxxxxxxxxxxxxxxxxxxxxx

Parámetros de query

status
string
Filtrar por estado del envío. Valores posibles: QUEUED, PROCESSING, COMPLETED, PARTIAL, FAILED, CANCELLED.
template
integer
Filtrar por ID del template utilizado.
created_after
string (date)
Filtrar envíos creados después de esta fecha. Formato: YYYY-MM-DD.
created_before
string (date)
Filtrar envíos creados antes de esta fecha. Formato: YYYY-MM-DD.
page
integer
Número de página. Por defecto: 1.
page_size
integer
Cantidad de resultados por página. Por defecto: 20.

Respuesta

count
integer
Total de envíos masivos que coinciden con los filtros.
next
string | null
URL de la siguiente página de resultados. null si es la última página.
previous
string | null
URL de la página anterior. null si es la primera página.
results
array
Lista de envíos masivos.
curl -X GET "https://api.mindosoftware.com/api/v1/meta-templates/bulk-sends/?status=COMPLETED&created_after=2025-11-01&page=1&page_size=10" \
  -H "X-API-Key: mindo_xxxxxxxxxxxxxxxxxxxxxxxx"
{
  "count": 2,
  "next": null,
  "previous": null,
  "results": [
    {
      "id": "a3f2b8c9-4d5e-6f7a-8b9c-0d1e2f3a4b5c",
      "status": "COMPLETED",
      "template": {
        "id": 45,
        "template_name": "welcome_message",
        "language": "es",
        "status": "APPROVED"
      },
      "phone_number": {
        "id": 123,
        "display_phone_number": "+54 9 223 675-0780",
        "verified_name": "Mindo Software"
      },
      "total_recipients": 3,
      "sent_count": 3,
      "delivered_count": 2,
      "read_count": 1,
      "failed_count": 0,
      "pending_count": 0,
      "progress_percentage": 100.0,
      "created_at": "2025-11-16T21:30:00Z",
      "completed_at": "2025-11-16T21:30:28Z"
    },
    {
      "id": "b4c3d9e0-5f6a-7b8c-9d0e-1f2a3b4c5d6e",
      "status": "COMPLETED",
      "template": {
        "id": 46,
        "template_name": "order_confirmation",
        "language": "es",
        "status": "APPROVED"
      },
      "phone_number": {
        "id": 123,
        "display_phone_number": "+54 9 223 675-0780",
        "verified_name": "Mindo Software"
      },
      "total_recipients": 150,
      "sent_count": 150,
      "delivered_count": 142,
      "read_count": 98,
      "failed_count": 0,
      "pending_count": 0,
      "progress_percentage": 100.0,
      "created_at": "2025-11-15T14:00:00Z",
      "completed_at": "2025-11-15T14:09:30Z"
    }
  ]
}