Sep 20, 2024
Create an API key
Creates a new API key with specific permissions and restrictions.
Usage
Requires
Admin API key
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using Algolia.Search.Clients;
using Algolia.Search.Models.Search;
var client = new SearchClient(new SearchConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY"));
var response = await client.AddApiKeyAsync(
new ApiKey
{
Acl = new List<Acl> { Enum.Parse<Acl>("Search"), Enum.Parse<Acl>("AddObject") },
Description = "my new api key",
Validity = 300,
MaxQueriesPerIPPerHour = 100,
MaxHitsPerQuery = 20,
}
);
Did you find this page helpful?