IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Find connectors
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Find connectors
editRetrieves a paginated subset of all ServiceNow connectors.
Only ServiceNow and Jira connectors are returned. For more information on connectors, see Actions API (for pushing cases to external systems).
Request URL
editGET <kibana host>:<port>/api/cases/configure/connectors/_find
Example request
editGET api/cases/configure/connectors/_find
Response code
edit-
200 - Indicates a successful call.
Response payload
editA JSON object describing the connectors and their settings.
Example response
edit{
"page": 1,
"perPage": 20,
"total": 2,
"data": [
{
"id": "61787f53-4eee-4741-8df6-8fe84fa616f7",
"actionTypeId": ".servicenow",
"name": "ServiceNow",
"config": {
"casesConfiguration": {
"mapping": [
{
"actionType": "overwrite",
"source": "title",
"target": "short_description"
},
{
"actionType": "append",
"source": "description",
"target": "description"
},
{
"actionType": "append",
"source": "comments",
"target": "comments"
}
]
},
"apiUrl": "https://dev78437.service-now.com"
},
"referencedByCount": 0
},
{
"id": "131d4448-abe0-4789-939d-8ef60680b498",
"actionTypeId": ".servicenow",
"name": "Defector",
"config": {
"apiUrl": "https://dev87359.service-now.com",
"casesConfiguration": {
"mapping": [
{
"source": "title",
"target": "short_description",
"actionType": "append"
},
{
"source": "description",
"target": "description",
"actionType": "append"
},
{
"source": "comments",
"target": "comments",
"actionType": "append"
}
]
}
},
"referencedByCount": 0
}
]
}