Hey guys I'm trying to create a search only key t...
# community-help
r
Hey guys I'm trying to create a search only key that I need to use on client side to fetch the data from a collection with few specific fields I have tried this can anyone help me with this
Copy code
{
  "description": "Search only key with include fields",
  "actions": [
    "documents:search"
  ],
  "collections": [
    "collection name"
  ],
  "include_fields": "loadNumber,truckType"
}
j
You would have to use scoped search api keys and place include_fields inside that key
r
@Jason Bosco Thank you I have seen the doc related to the
Generate Scoped Search Key
But found no way to generate it from the Typesense dashboard. Where I can found the place to generate it from dashboard?
j
Scoped API keys can only be created using the client libraries. They're not stored on the server-side
🙌 1