Get shareable references

POST /api/spaces/_get_shareable_references

Collect references and space contexts for saved objects.

Headers

  • kbn-xsrf string Required

    A required header to protect against CSRF attacks

application/json

Body

  • objects array[object] Required
    Hide objects attributes Show objects attributes object
POST /api/spaces/_get_shareable_references
curl \
 --request POST https://localhost:5601/api/spaces/_get_shareable_references \
 --header "Content-Type: application/json" \
 --header "kbn-xsrf: true" \
 --data '{"objects":[{"id":"string","type":"string"}]}'
Request examples
# Headers
kbn-xsrf: true

# Payload
{
  "objects": [
    {
      "id": "string",
      "type": "string"
    }
  ]
}