> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://apidocs.polytomic.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://apidocs.polytomic.com/_mcp/server.

# CSV URL

Supports:
* ✅ Models
* ✅ Bulk sync source




## Connection

### Configuration
<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>auth</code></td>
<td><code>object</code></td>
<td style="vertical-align: top;">Authentication method</td>
<td><code>false</code></td>
</tr>
<tr>
<td><code>headers</code></td>
<td><code>array</code></td>
<td style="vertical-align: top;">Headers</td>
<td><code>false</code></td>
</tr>
<tr>
<td><code>parameters</code></td>
<td><code>array</code></td>
<td style="vertical-align: top;">Query string parameters</td>
<td><code>false</code></td>
</tr>
<tr>
<td><code>url</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Base URL<br/><br/>e.g. http://www.example.com</td>
<td><code>true</code></td>
</tr>
</tbody>
</table>


#### Example

```json
{
  "name": "CSV URL connection",
  "type": "csv",
  "configuration": {
    "auth": {
        "basic": {
            "password": "secret",
            "username": "user@example.com"
        },
        "header": {
            "name": "foo",
            "value": "bar"
        },
        "oauth": {
            "auth_style": 0,
            "client_id": "client_id",
            "client_secret": "client_secret",
            "extra_form_data": [
                {
                    "name": "foo",
                    "value": "bar"
                }
            ],
            "scopes": [
                {}
            ],
            "token_endpoint": "https://example.com/oauth/token"
        },
        "query": [
            {
                "name": "foo",
                "value": "bar"
            }
        ]
    },
    "headers": [
        {
            "name": "foo",
            "value": "bar"
        }
    ],
    "parameters": [
        {
            "name": "foo",
            "value": "bar"
        }
    ],
    "url": ""
  }
}
```

## Model Sync
### Source
#### Configuration
<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>delim</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Delimiter<br/><br/>Accepted values: `Comma`, `Tab`, `Semi-colon`</td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>headers</code></td>
<td><code>object</code></td>
<td style="vertical-align: top;">Headers</td>
<td><code>false</code></td>
</tr>
<tr>
<td><code>parameters</code></td>
<td><code>object</code></td>
<td style="vertical-align: top;">Query string parameters</td>
<td><code>false</code></td>
</tr>
<tr>
<td><code>path</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Path to CSV file<br/><br/>e.g. /static/table.csv</td>
<td><code>true</code></td>
</tr>
</tbody>
</table>


#### Example
```json
{
  ...
  "configuration": {
    "delim": "",
    "headers": {},
    "parameters": {},
    "path": ""
  }
}
```






## Bulk Sync
### Source
CSV URL connections may be used as a bulk sync source. No additional configuration options are required.