# Apply Brand Logo with projectId

Use the `projects` array (one or more project IDs) to apply your stored brand assets (like company logos) to infographic outputs. Add it to `/content/Create` with `outputType: "infographic"`. Need a project first? Follow [Create a Project (Brand Assets)](https://docs.autocontentapi.com/quick-start/tools/create-project) to save a logo via `imageUrl` or `imageData`.

```bash
curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "infographic",
    "projects": ["YOUR_PROJECT_ID"],
    "topic": "Key AI safety principles for enterprise teams",
    "text": "Keep it board-friendly with three headline callouts, a stat block, and a footer CTA.",
    "infographicOrientation": "portrait",
    "infographicDetail": "standard"
  }'
```

**What `projects` does**

* Pulls your saved brand package to place logos on the generated infographic.
* Works with any input type (topic, website, text) and all layout options.

Poll `/content/Status/{id}` to fetch the branded asset URL.

## Try it in code

* [C#](https://docs.autocontentapi.com/code-samples/infographics/csharp/brand-with-project-id)
* [Node.js](https://docs.autocontentapi.com/code-samples/infographics/nodejs/brand-with-project-id)
* [Java](https://docs.autocontentapi.com/code-samples/infographics/java/brand-with-project-id)
* [PHP](https://docs.autocontentapi.com/code-samples/infographics/php/brand-with-project-id)
* [Python](https://docs.autocontentapi.com/code-samples/infographics/python/brand-with-project-id)
