Get Timelines or Timeline templates

GET /api/timelines

Get a list of all saved Timelines or Timeline templates.

Query parameters

  • only_user_favorite string | null

    If true, only timelines that are marked as favorites by the user are returned.

    Values are true or false.

  • timeline_type string | null

    The type of Timeline.

    Values are default or template.

  • The field to sort the timelines by.

    Values are title, description, updated, or created.

  • Whether to sort the results ascending or descending

    Values are asc or desc.

  • page_size string | null

    How many results should returned at once

  • page_index string | null

    How many pages should be skipped

  • status string | null

    The status of the Timeline.

    Values are active, draft, or immutable.

Responses

GET /api/timelines
curl \
 --request GET 'http://localhost:5601/api/timelines' \
 --header "Authorization: $API_KEY"