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

# CSV assets sync

> Sync assets to a csv file

## Activation

Provide **url** to fetch csv from to partner of tolstoy

#### CSV columns schema

```json theme={null}
{
  "externalId": "1",
  "appUrl": "tolstoy.myshopify.com",
  "shopId": "gid://shopify/Store/22222222222",
  "posterUrl": "https://my-poster.com/poster.webp",
  "videoUrl": "https://my-video.com/video.webm",
  "assetSource": "instagram",
  "createdAt": "2023-07-12T09:36:17.954Z",
  "products": "[ {
      \"id\": \"gid://shopify/Product/1111111111111\",
      \"title\": \"product name\",
      \"description\": \"product description\"
    }]"
 }
```

#### CSV Example

```csv theme={null}
externalId,appUrl,shopId,posterUrl,videoUrl,assetSource,createdAt,products
1,tolstoy.myshopify.com,gid://shopify/Store/22222222222,https://my-poster.com/poster.webp,https://my-video.com/video.webm,instagram,2023-07-12T09:36:17.954Z,"[ { ""id"": ""gid://shopify/Product/1111111111111"",""title"": ""product name"",""description"": ""product description""}]"
```
