Pular para o conteúdo principal
GET
/
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"
    }
  ]
}

Descrição

Retorna uma lista paginada de todos os envios em massa. Suporta filtros por status, template e intervalo de datas para facilitar a busca.

Header de autenticação

X-API-Key
string
obrigatório
Sua API Key da Mindo. Formato: mindo_xxxxxxxxxxxxxxxxxxxxxxxx

Parâmetros de query

status
string
Filtrar por status do envio. Valores possíveis: QUEUED, PROCESSING, COMPLETED, PARTIAL, FAILED, CANCELLED.
template
integer
Filtrar por ID do template utilizado.
created_after
string (date)
Filtrar envios criados após esta data. Formato: YYYY-MM-DD.
created_before
string (date)
Filtrar envios criados antes desta data. Formato: YYYY-MM-DD.
page
integer
Número da página. Padrão: 1.
page_size
integer
Resultados por página. Padrão: 20.

Resposta

count
integer
Total de envios em massa que correspondem aos filtros.
next
string | null
URL da próxima página de resultados. null se for a última página.
previous
string | null
URL da página anterior. null se for a primeira página.
results
array
Lista de envios em massa.
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"
    }
  ]
}