I forgot how to generate a search only API key... ...
# community-help
j
I forgot how to generate a search only API key... is there a way to do this directly through the admin backend on the typesense cloud server?
j
You can go to the API Keys section and then paste the JSON parameter from the code snippet here: https://typesense.org/docs/0.22.2/api/api-keys.html#search-only-api-key
So something like:
Copy code
{
  'description': 'Search-only companies key.',
  'actions': ['documents:search'],
  'collections': ['companies']
}
🙌 1
j
OK thanks, did not even know that the field there was editable!👍