# Apply Brand Logo with projectId

Attach your stored brand assets (logos, marks) to slide deck outputs by adding the `projects` array to `/content/Create` with `outputType: "slide_deck"`. 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": "slide_deck",
    "projects": ["YOUR_PROJECT_ID"],
    "topic": "Annual security posture update",
    "text": "Executive-level slides with KPIs, risks, mitigations, and a closing CTA.",
    "duration": "default",
    "slideDeckFormat": "detailed"
  }'
```

**What `projects` does**

* Pulls your saved brand package to place the logo and styling in the generated slides.
* Works alongside other deck controls (`slideDeckFormat`, `duration`, language, style).

Poll `/content/Status/{id}` to download the branded deck when status reaches `100`.

## Try it in code

* [C#](/code-samples/slide-decks/csharp/brand-with-project-id.md)
* [Node.js](/code-samples/slide-decks/nodejs/brand-with-project-id.md)
* [Java](/code-samples/slide-decks/java/brand-with-project-id.md)
* [PHP](/code-samples/slide-decks/php/brand-with-project-id.md)
* [Python](/code-samples/slide-decks/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/slide-decks/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.
