> ## Documentation Index
> Fetch the complete documentation index at: https://docs.useparagon.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Contentful

## Synced Objects

Contentful supports the following Synced Objects:

* [Files](/managed-sync/api/file-schema)
  <p>Contentful entries are synced as Markdown files, with rich text fields converted to Markdown.</p>
  <p>Contentful assets (images, videos, documents, etc.) are synced in their original format.</p>

## Files

Send a request to [Enable Sync](/managed-sync/api/enable-a-sync) to start a file sync.

```json Example theme={null}
{
    "integration": "contentful",
    "pipeline": "files",
    "configuration": {
        "spaceId": "f163o8lczdw1"
    }
}
```

**Configuration options:**

<ParamField path="spaceId" type="string" required>
  The Contentful Space ID to sync content from.
</ParamField>

<ParamField path="environmentId" type="string">
  A Contentful Environment ID to limit the sync to a specific environment. If not specified, the default environment (`master`) will be used.
</ParamField>

<ParamField path="locale" type="string">
  A locale code (e.g. `en-US`) to use when resolving localized fields. If not specified, the first available locale for each field will be used.
</ParamField>
