> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zype.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Sync Encoder

Synchronize the encoder data with the external streaming provider. This fetches the latest encoder state and updates the local configuration.

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Live (V3)",
    "version": "1.0.0",
    "description": "Live (V3) API for managing live streaming encoders"
  },
  "servers": [
    {
      "url": "https://api.zype.com"
    }
  ],
  "components": {
    "securitySchemes": {
      "api_key": {
        "type": "apiKey",
        "name": "api_key",
        "in": "query"
      }
    }
  },
  "security": [
    {
      "api_key": []
    }
  ],
  "paths": {
    "/v3/live/encoders/{id}/sync_encoder": {
      "post": {
        "summary": "Sync Encoder",
        "description": "Synchronize the encoder data with the external streaming provider. This fetches the latest encoder state and updates the local configuration.",
        "operationId": "syncEncoder",
        "tags": [
          "Live Encoders"
        ],
        "parameters": [
          {
            "$ref": "#/paths/~1v3~1live~1encoders~1%7Bid%7D/get/parameters/0"
          }
        ],
        "responses": {
          "200": {
            "description": "Encoder synchronized successfully",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1v3~1live~1encoders/post/responses/201/content/application~1json/schema"
                }
              }
            }
          },
          "404": {
            "description": "Encoder not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1live_events~1%7Bid%7D/get/responses/404/content/application~1json/schema"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable entity - sync error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1live_events/post/responses/422/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    }
  }
}
```