> 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
NameTypeDescriptionRequired
auth object Authentication method false
headers array Headers false
parameters array Query string parameters false
url string Base URL

e.g. http://www.example.com
true
#### 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
NameTypeDescriptionRequired
delim string Delimiter

Accepted values: `Comma`, `Tab`, `Semi-colon`
true
headers object Headers false
parameters object Query string parameters false
path string Path to CSV file

e.g. /static/table.csv
true
#### 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.