sevdesk API Configuration Lite Private Preview
Request
POST https://api.fivetran.com/v1/connections
{ "group_id": "group_id", "service": "sevdesk", "trust_certificates": true, "trust_fingerprints": true, "run_setup_tests": true, "paused": false, "pause_after_trial": false, "sync_frequency": 1440, "data_delay_sensitivity": "NORMAL", "data_delay_threshold": 0, "daily_sync_time": "14:00", "schedule_type": "auto", "connect_card_config": { "redirect_uri": "https://your.site/path", "hide_setup_guide": true }, "proxy_agent_id": "proxy_agent_id", "private_link_id": "private_link_id", "networking_method": "Directly", "hybrid_deployment_agent_id": "hybrid_deployment_agent_id", "destination_configuration": { "virtual_warehouse": "virtual_warehouse" }, "destination_schema_names": "SOURCE_NAMING", "config": { "account_number": "your_sevdesk_account_number", "api_token": "your_sevdesk_api_token", "balance_date": "your_sevdesk_balance_date", "base_url": "your_sevdesk_base_url", "custom_field_value": "your_sevdesk_custom_field_value", "tax_rule_code": "your_sevdesk_tax_rule_code", "schema": "schema_name" } }
Config parameters
| Name | Description |
|---|---|
account_number | The datev account number to retrieve receipt guidance for (optional — leave blank to skip this table). |
api_token | Your 32-character hexadecimal API token. |
balance_date | ISO 8601 date for balance calculation (optional — leave blank to skip this table). |
base_url | The base URL for the sevdesk API, without the protocol prefix. |
custom_field_value | The custom field value to search contacts by (optional — leave blank to skip this table). |
tax_rule_code | The tax rule code to retrieve receipt guidance for (optional — leave blank to skip this table). |
schema (required) | Destination schema name. Schema name is permanent and cannot be changed after connection creation |
Authorization
There are two ways to authorize this connector type:
- By specifying the values for the
base_url,api_token,account_number,tax_rule_code,custom_field_valueandbalance_dateparameters in the request.POST https://api.fivetran.com/v1/connections{ "service": "sevdesk", "group_id": "group_id", "config": { "base_url": "your_sevdesk_base_url", "api_token": "your_sevdesk_api_token", "account_number": "your_sevdesk_account_number", "tax_rule_code": "your_sevdesk_tax_rule_code", "custom_field_value": "your_sevdesk_custom_field_value", "balance_date": "your_sevdesk_balance_date" } } By using the Connect Card or the Fivetran dashboard.