Add a source

Adds a source to the list of allowed sources.

Usage

Requires Admin API key
1
2
3
4
5
6
7
8
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.AppendSourceAsync(
  new Source { VarSource = "theSource", Description = "theDescription" }
);
Did you find this page helpful?