# Apply Brand Logo with projectId

Use the `projects` array (supply one or more project IDs) to attach your saved brand assets (e.g., company logo) to explainer video outputs. Add it to the `/content/Create` payload alongside `outputType: "video"`.

```bash
curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "accept: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "video",
    "projects": ["YOUR_PROJECT_ID"],
    "resources": [
      { "type": "text", "content": "Explain our new platform launch and highlight customer success data." }
    ],
    "text": "Keep this to 90 seconds with a product intro, key proof points, and a closing CTA.",
    "titlePrompt": "Short, benefit-led launch teaser"
  }'
```

**What `projects` does**

* Pulls your stored brand package to place the company logo into the video frames and thumbnail.
* Keeps other content controls intact (language, style, duration, title/description prompts).

Poll `/content/Status/{id}` as usual to retrieve the finished video and logo-bearing thumbnail.

## Try it in code

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