# 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)](/quick-start/tools/create-project.md) 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#](/code-samples/infographics/csharp/brand-with-project-id.md)
* [Node.js](/code-samples/infographics/nodejs/brand-with-project-id.md)
* [Java](/code-samples/infographics/java/brand-with-project-id.md)
* [PHP](/code-samples/infographics/php/brand-with-project-id.md)
* [Python](/code-samples/infographics/python/brand-with-project-id.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.autocontentapi.com/quick-start/infographics/brand-with-project-id.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
