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