Resolve a short URL Technical Preview

GET /api/short_url/_slug/{slug}

Resolve a Kibana short URL by its slug.

Path parameters

  • slug string Required

    The slug of the short URL.

Responses

  • 200 application/json

    Indicates a successful call.

    Hide response attributes Show response attributes object
    • id string

      The identifier for the short URL.

    • locator object
      Hide locator attributes Show locator attributes object
      • id string

        The identifier for the locator.

      • state object

        The locator parameters.

      • version string

        The version of Kibana when the short URL was created.

    • slug string

      A random human-readable slug is automatically generated if the humanReadableSlug parameter is set to true. If it is set to false, a random short string is generated.

GET /api/short_url/_slug/{slug}
curl \
 --request GET 'http://localhost:5622/api/short_url/_slug/{slug}' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "accessCount": 42,
  "accessDate": "string",
  "createDate": "string",
  "id": "string",
  "locator": {
    "id": "string",
    "state": {},
    "version": "string"
  },
  "slug": "string"
}