Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Example response in "Find Cases by Alert" topic is outdated #1694

Closed
nastasha-solomon opened this issue Mar 9, 2022 · 0 comments · Fixed by #1695
Closed

[BUG] Example response in "Find Cases by Alert" topic is outdated #1694

nastasha-solomon opened this issue Mar 9, 2022 · 0 comments · Fixed by #1695

Comments

@nastasha-solomon
Copy link
Contributor

The example response for the API that finds cases by alerts is outdated. With elastic/kibana#102664, the case title is now returned along with--and separate from--the alert ID. #102664 was introduced in 7.14, so will need to backport this change from 8.1-7.14.

Current:

["8af6ac20-74f6-11ea-b83a-553aecdb28b6", "a18b38a0-71b0-11ea-a0b2-c51ea50a58e2"]

Correct:

[
    {
        "id": "8af6ac20-74f6-11ea-b83a-553aecdb28b6",
        "title": "Test 1"
    },
    {
        "id": "a18b38a0-71b0-11ea-a0b2-c51ea50a58e2",
        "title": "Test 2"
    }
]

cc: @cnasikas

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant