> ## Documentation Index
> Fetch the complete documentation index at: https://docs.msgflash.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GET Détail d'un job bulk contacts

> Retourne le détail d'un job asynchrone bulk contacts.

## Endpoint

```txt theme={null}
GET /api/v1/contacts/bulk-jobs/{jobId}
```

## Paramètres

| Champ   | Type | Requis | Emplacement | Description    |
| ------- | ---- | -----: | ----------- | -------------- |
| `jobId` | UUID |    oui | path        | ID du job bulk |

## Réponse succès `200`

```json theme={null}
{
  "data": {
    "id": "job_abc123",
    "operation": "add_to_group",
    "status": "done",
    "requestedCount": 4900,
    "processedCount": 4900,
    "progress": 100,
    "groupId": "uuid-group",
    "summary": {
      "added": 4721,
      "alreadyInGroup": 131,
      "notFound": 48
    },
    "error": null,
    "createdAt": "2026-05-08T10:00:00.000Z",
    "updatedAt": "2026-05-08T10:00:12.000Z",
    "completedAt": "2026-05-08T10:00:12.000Z"
  }
}
```
