# Strategia

Roadmap GTM e framework della voce.

GET `/brands/:slug/gtm`

Roadmap GTM con fasi.

Responses

200 GTM

```
curl -X GET \
  https://anomalia.so/api/v1/brands/:slug/gtm \
  -H "Authorization: Bearer $TOKEN"
```

POST `/brands/:slug/gtm/update`

Aggiorna il piano GTM.

Request Body

```
{ "objective": "Increase brand awareness" }
```

Responses

200 Updated

```
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/gtm/update \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "objective": "Increase brand awareness" }'
```

GET `/brands/:slug/voice`

Framework della voice.

Responses

200 Voice

```
curl -X GET \
  https://anomalia.so/api/v1/brands/:slug/voice \
  -H "Authorization: Bearer $TOKEN"
```

POST `/brands/:slug/voice/update`

Aggiorna la voice.

Request Body

```
{ "mood": "energetic", "tone": "friendly" }
```

Responses

200 Updated

```
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/voice/update \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "mood": "energetic", "tone": "friendly" }'
```

[

← Precedente

Studio

](/it/docs/api/studio)[

Avanti →

Analytics

](/it/docs/api/analytics)

---
Source: https://www.anomalia.so/it/docs/api/strategy
