> ## Documentation Index
> Fetch the complete documentation index at: https://kainotomia-aa039c7f.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Modifier historique seo

🧠 Agent concerné : Lou

# LIMOVA SEO - Mettre à jour l'historique d'un job

## Description

Met à jour l'historique d'un job SEO existant.

## Endpoint

```
PUT /seo/job/history/{id}
```

## Paramètres

### Path

* `id`: string (requis) - ID du job SEO

### Body (JSON)

```json theme={null}
{
  "action": "string",
  "details": "string"
}
```

#### Champs requis

* `action`: string - Action effectuée sur le job
* `details`: string - Détails de l'action

## Réponse

### Succès (200)

```json theme={null}
{
  "message": "Job history updated successfully"
}
```

## Coût

**Cost Fix: 5 Token(s)**

## Exemple d'utilisation

```bash theme={null}
curl -X PUT "https://kainotomiaprodbackend-brbzd3f2gjbugtcd.francecentral-01.azurewebsites.net/seo/job/history/job-id-123" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -d '{
    "action": "status_changed",
    "details": "Job status changed from pending to running"
  }'
```

## Notes

* Le job doit appartenir à l'organisation cliente de l'utilisateur authentifié
* L'action et les détails sont ajoutés à l'historique du job
* Utile pour le suivi des modifications et le debugging
