Update connector
editUpdate connector
editUpdates a connector.
The Kibana Console supports only Elasticsearch APIs. You cannot interact with the Kibana APIs with the Console and must use curl
or another HTTP tool instead. For more information, refer to Console.
Request URL
editPUT <kibana host>:<port>/api/actions/action/<connector ID>
URL parts
editThe URL must include the connector ID
of the connector you are updating.
Call Find connectors to retrieve connector IDs.
Request body
editA JSON object with the fields you want to update:
Name | Type | Description | Required |
---|---|---|---|
|
Object containing the action’s configuration. |
Yes |
|
|
Object |
Object containing the third-party account information used to create and update incidents. For ServiceNow connectors:
For Jira connectors:
For IBM Resilient connectors:
|
Yes |
|
String |
The connector’s name. |
Yes |
Name | Type | Description | Required |
---|---|---|---|
|
String |
URL of the third-party instance. |
Yes |
|
String |
Jira project key. |
For Jira connectors, yes. For other connectors, no. |
|
String |
IBM Resilient organization ID. |
For IBM Resilient connectors, yes. For other connectors, no. |
Example request
editUpdates the description
field mapping of connector ID
61787f53-4eee-4741-8df6-8fe84fa616f7
:
PUT api/actions/action/61787f53-4eee-4741-8df6-8fe84fa616f7 { "config": { "apiUrl": "https://dev357417.service-now.com", }, "name": "SN API", "secrets": { "password": "stongpassword123!", "username": "admin" } }
Response code
edit-
200
- Indicates a successful call.