AckdbIngestFile
A file to upload during ingest. Content is base64-encoded. Max 10MB.
Properties
namestringrequiredFile name with extension.
typestringrequiredMIME type of the file.
sizeBytesintegerrequiredFile size in bytes. Must not exceed FILE_MAX_SIZE_BYTES (default 10MB = 10485760).
contentstring <byte>requiredBase64-encoded file content.
sourceFileIdstringOriginal file ID from the source system (e.g., Slack file ID).
sourceUrlstringOriginal download URL from the source system.
metadataobjectArbitrary source-specific metadata about the file.
Example
AckdbIngestFile example
{
"name": "q4-proposal.pdf",
"type": "application/pdf",
"sizeBytes": 2048576,
"content": "string",
"sourceFileId": "F04ABC123",
"sourceUrl": "https://files.slack.com/files-pri/T04ABC-F04ABC123/q4-proposal.pdf",
"metadata": {}
}