Replace allowed sources

Replaces the list of allowed sources.

Usage

Requires Admin API key
1
2
3
4
5
6
7
8
9
10
11
12
using Algolia.Search.Clients;
using Algolia.Search.Http;
using Algolia.Search.Models.Search;

var client = new SearchClient(new SearchConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY"));

var response = await client.ReplaceSourcesAsync(
  new List<Source>
  {
    new Source { VarSource = "theSource", Description = "theDescription" },
  }
);
Did you find this page helpful?