Microsoft SQL Server
- PATCH
- /workspaces
- /:workspace
- /targets
- /:target_id
Update Microsoft SQL Server target configuration
Request example
curl -X PATCH "https://api.buddy.works/workspaces/:workspace/targets/:target_id" \
-H "Authorization: Bearer <YOUR-TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"type": "MSSQL",
"identifier": "production-mssql",
"name": "Production MSSQL",
"host": "mssql.example.com",
"port": "1433",
"database": "app",
"auth": {
"method": "PASSWORD",
"username": "app_user",
"password": "secured"
},
"tags": [
"mssql",
"production"
]
}'STATUS200 OK