I'm executing the following command but I'm getting error on JSON format
PS C:\Program Files\PostgreSQL\12\bin> curl.exe -i -X POST -H "Accept:application/json" -H "Content-Type:application/json" localhost:8083/connectors/ -d '{"name": "sde-connector", "config": {"connector.class": "io.debezium.connector.postgresql.PostgresConnector", "database.hostname": "postgres", "database.port": "5432", "database.user": "postgres", "database.password": "password", "database.dbname": "postgres", "database.server.name": "bankserver1", "table.whitelist": "bank.holding"}}'
HTTP/1.1 500 Internal Server Error
Date: Tue, 22 Feb 2022 23:00:52 GMT
Content-Type: application/json
Content-Length: 240
Server: Jetty(9.4.20.v20190813)
{"error_code":500,"message":"Unexpected character ('n' (code 110)): was expecting double-quote to start field name\n at [Source: (org.glassfish.jersey.message.internal.ReaderInterceptorExecutor$UnCloseableInputStream); line: 1, column: 3]"}
PS C:\Program Files\PostgreSQL\12\bin>
tried the suggestion to put \"name\"
but it doesn't work