PUT
/_connector/{connector_id}/_name
Console
PUT _connector/my-connector/_name
{
"name": "Custom connector",
"description": "This is my customized connector"
}
curl \
--request PUT 'http://api.example.com/_connector/{connector_id}/_name' \
--header "Content-Type: application/json" \
--data '"{\n \"name\": \"Custom connector\",\n \"description\": \"This is my customized connector\"\n}"'
Request examples
Connector update name example1
An example body for a `PUT _connector/my-connector/_name` request.
{
"name": "Custom connector",
"description": "This is my customized connector"
}
{
"name": "Custom connector",
"description": "This is my customized connector"
}
Response examples (200)
{
"result": "updated"
}