## Sync Index

`JsonElement Beta.Indexes.Sync(IndexSyncParamsparameters, CancellationTokencancellationToken = default)`

**post** `/api/v1/indexes/{index_id}/sync`

Trigger a sync and export for an existing index, re-parsing changed files and exporting updated chunks.

### Parameters

- `IndexSyncParams parameters`

  - `required string indexID`

  - `string? organizationID`

  - `string? projectID`

### Example

```csharp
IndexSyncParams parameters = new() { IndexID = "index_id" };

var response = await client.Beta.Indexes.Sync(parameters);

Console.WriteLine(response);
```

#### Response

```json
{}
```
