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

# celtra

> Celtra Creative Export

**Server path:** `/celtra` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                        | Description            |
| ----------------------------------------------------------- | ---------------------- |
| [`celtra_export_outputs_json`](#celtra_export_outputs_json) | Export outputs as JSON |
| [`celtra_export_outputs_tsv`](#celtra_export_outputs_tsv)   | Export outputs as TSV  |
| [`celtra_export_outputs_zip`](#celtra_export_outputs_zip)   | Export outputs as ZIP  |

***

## celtra\_export\_outputs\_json

Export outputs as JSON

**Parameters:**

| Parameter      | Type   | Required | Default | Description                                                                                                                                                                                                                                                                          |
| -------------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `assetFormats` | object | No       | —       | Specifies the desired output format for each asset type. If omitted, default formats are used.                                                                                                                                                                                       |
| `caller`       | string | No       | —       | Custom string to identify the caller or request source.                                                                                                                                                                                                                              |
| `filters`      | object | Yes      | —       | Filters to select which outputs to export. At least one of designFile.id, folder.id, or account.id (with designFile.lastModificationTimestamp) is required. Filter operators: eq (equals), gt (greater than), gte (greater than or equal), lt (less than), lte (less than or equal). |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "assetFormats": {
        "type": "object",
        "description": "Specifies the desired output format for each asset type. If omitted, default formats are used.",
        "properties": {
          "Image": {
            "type": "object",
            "description": "The image value"
          },
          "Video": {
            "type": "object",
            "description": "The video value"
          },
          "HTML": {
            "type": "object",
            "description": "The html value"
          }
        }
      },
      "caller": {
        "type": "string",
        "description": "Custom string to identify the caller or request source."
      },
      "filters": {
        "type": "object",
        "description": "Filters to select which outputs to export. At least one of designFile.id, folder.id, or account.id (with designFile.lastModificationTimestamp) is required. Filter operators: eq (equals), gt (greater than), gte (greater than or equal), lt (less than), lte (less than or equal).",
        "properties": {
          "designFile.id": {
            "type": "object",
            "description": "Filter by design file ID using eq operator. Example: {\"eq\": \"abc123\"}"
          },
          "folder.id": {
            "type": "object",
            "description": "Filter by folder ID using eq operator. Example: {\"eq\": \"folder123\"}"
          },
          "account.id": {
            "type": "object",
            "description": "Filter by account ID using eq operator. Example: {\"eq\": \"acct123\"}"
          },
          "designFile.lastModificationTimestamp": {
            "type": "object",
            "description": "Filter by last modification timestamp. Use with account.id filter. Supports gt, gte, lt, lte operators with ISO 8601 timestamps."
          }
        }
      }
    },
    "required": [
      "PCID",
      "filters"
    ]
  }
  ```
</Expandable>

***

## celtra\_export\_outputs\_tsv

Export outputs as TSV

**Parameters:**

| Parameter        | Type   | Required | Default | Description                                                                                                                                                                                                                                                                          |
| ---------------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `assetFormats`   | object | No       | —       | Specifies the desired output format for each asset type. If omitted, default formats are used.                                                                                                                                                                                       |
| `caller`         | string | No       | —       | Custom string to identify the caller or request source.                                                                                                                                                                                                                              |
| `filename`       | string | No       | —       | Name for the resulting file. Defaults to "export".                                                                                                                                                                                                                                   |
| `filters`        | object | Yes      | —       | Filters to select which outputs to export. At least one of designFile.id, folder.id, or account.id (with designFile.lastModificationTimestamp) is required. Filter operators: eq (equals), gt (greater than), gte (greater than or equal), lt (less than), lte (less than or equal). |
| `responseFormat` | string | No       | —       | "urls" returns a TSV with download URLs. "paths" returns a ZIP containing the TSV and asset files.                                                                                                                                                                                   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "assetFormats": {
        "type": "object",
        "description": "Specifies the desired output format for each asset type. If omitted, default formats are used.",
        "properties": {
          "Image": {
            "type": "object",
            "description": "The image value"
          },
          "Video": {
            "type": "object",
            "description": "The video value"
          },
          "HTML": {
            "type": "object",
            "description": "The html value"
          }
        }
      },
      "caller": {
        "type": "string",
        "description": "Custom string to identify the caller or request source."
      },
      "filename": {
        "type": "string",
        "description": "Name for the resulting file. Defaults to \"export\"."
      },
      "filters": {
        "type": "object",
        "description": "Filters to select which outputs to export. At least one of designFile.id, folder.id, or account.id (with designFile.lastModificationTimestamp) is required. Filter operators: eq (equals), gt (greater than), gte (greater than or equal), lt (less than), lte (less than or equal).",
        "properties": {
          "designFile.id": {
            "type": "object",
            "description": "Filter by design file ID using eq operator. Example: {\"eq\": \"abc123\"}"
          },
          "folder.id": {
            "type": "object",
            "description": "Filter by folder ID using eq operator. Example: {\"eq\": \"folder123\"}"
          },
          "account.id": {
            "type": "object",
            "description": "Filter by account ID using eq operator. Example: {\"eq\": \"acct123\"}"
          },
          "designFile.lastModificationTimestamp": {
            "type": "object",
            "description": "Filter by last modification timestamp. Use with account.id filter. Supports gt, gte, lt, lte operators with ISO 8601 timestamps."
          }
        }
      },
      "responseFormat": {
        "type": "string",
        "description": "\"urls\" returns a TSV with download URLs. \"paths\" returns a ZIP containing the TSV and asset files.",
        "enum": [
          "urls",
          "paths"
        ]
      }
    },
    "required": [
      "PCID",
      "filters"
    ]
  }
  ```
</Expandable>

***

## celtra\_export\_outputs\_zip

Export outputs as ZIP

**Parameters:**

| Parameter      | Type   | Required | Default | Description                                                                                                                                                                                                                                                                          |
| -------------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `assetFormats` | object | No       | —       | Specifies the desired output format for each asset type. If omitted, default formats are used.                                                                                                                                                                                       |
| `caller`       | string | No       | —       | Custom string to identify the caller or request source.                                                                                                                                                                                                                              |
| `filename`     | string | No       | —       | Name for the resulting ZIP file. Defaults to "export".                                                                                                                                                                                                                               |
| `filters`      | object | Yes      | —       | Filters to select which outputs to export. At least one of designFile.id, folder.id, or account.id (with designFile.lastModificationTimestamp) is required. Filter operators: eq (equals), gt (greater than), gte (greater than or equal), lt (less than), lte (less than or equal). |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "assetFormats": {
        "type": "object",
        "description": "Specifies the desired output format for each asset type. If omitted, default formats are used.",
        "properties": {
          "Image": {
            "type": "object",
            "description": "The image value"
          },
          "Video": {
            "type": "object",
            "description": "The video value"
          },
          "HTML": {
            "type": "object",
            "description": "The html value"
          }
        }
      },
      "caller": {
        "type": "string",
        "description": "Custom string to identify the caller or request source."
      },
      "filename": {
        "type": "string",
        "description": "Name for the resulting ZIP file. Defaults to \"export\"."
      },
      "filters": {
        "type": "object",
        "description": "Filters to select which outputs to export. At least one of designFile.id, folder.id, or account.id (with designFile.lastModificationTimestamp) is required. Filter operators: eq (equals), gt (greater than), gte (greater than or equal), lt (less than), lte (less than or equal).",
        "properties": {
          "designFile.id": {
            "type": "object",
            "description": "Filter by design file ID using eq operator. Example: {\"eq\": \"abc123\"}"
          },
          "folder.id": {
            "type": "object",
            "description": "Filter by folder ID using eq operator. Example: {\"eq\": \"folder123\"}"
          },
          "account.id": {
            "type": "object",
            "description": "Filter by account ID using eq operator. Example: {\"eq\": \"acct123\"}"
          },
          "designFile.lastModificationTimestamp": {
            "type": "object",
            "description": "Filter by last modification timestamp. Use with account.id filter. Supports gt, gte, lt, lte operators with ISO 8601 timestamps."
          }
        }
      }
    },
    "required": [
      "PCID",
      "filters"
    ]
  }
  ```
</Expandable>
