## Sync Pipeline Document

`JsonElement Pipelines.Documents.Sync(DocumentSyncParamsparameters, CancellationTokencancellationToken = default)`

**post** `/api/v1/pipelines/{pipeline_id}/documents/{document_id}/sync`

Sync a specific document for a pipeline.

### Parameters

- `DocumentSyncParams parameters`

  - `required string pipelineID`

  - `required string documentID`

### Example

```csharp
DocumentSyncParams parameters = new()
{
    PipelineID = "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
    DocumentID = "document_id",
};

var response = await client.Pipelines.Documents.Sync(parameters);

Console.WriteLine(response);
```

#### Response

```json
{}
```
