Curly bracket is missing in this example: https://www.elastic.co/guide/en/app-search/current/web-crawler-api-reference.html#_examples_22 there should be a closing curly bracket after line `"password": "password"` ``` curl \ --request "PUT" \ --url "${ENTERPRISE_SEARCH_BASE_URL}/api/as/v1/engines/${ENGINE_NAME}/crawler/domains/{DOMAIN_ID}" \ --header "Content-Type: application/json" \ --header "Authorization: Bearer ${TOKEN}" \ --data '{ "name": "https://www.elastic.co", "auth": "{ "type": "basic", "username": "username", "password": "password" }' ```