curl -X POST https://alfred.black/api/v1/vault/inbox/bulk \
-H "Authorization: Bearer alf_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"files": [
{
"filename": "meeting-notes-2026-02-26.md",
"content": "# Standup Notes\n\n- Alice: ML pipeline work"
},
{
"filename": "project-idea.md",
"content": "# New Project Idea\n\nBuild a knowledge graph..."
},
{
"filename": "contact-info.txt",
"content": "Name: David Lee\nEmail: david@example.com"
}
]
}'
{
"message": "Uploaded 3 files to inbox",
"filenames": [
"meeting-notes-2026-02-26.md",
"project-idea.md",
"contact-info.txt"
]
}
Upload multiple files to your inbox at once.
curl -X POST https://alfred.black/api/v1/vault/inbox/bulk \
-H "Authorization: Bearer alf_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"files": [
{
"filename": "meeting-notes-2026-02-26.md",
"content": "# Standup Notes\n\n- Alice: ML pipeline work"
},
{
"filename": "project-idea.md",
"content": "# New Project Idea\n\nBuild a knowledge graph..."
},
{
"filename": "contact-info.txt",
"content": "Name: David Lee\nEmail: david@example.com"
}
]
}'
{
"message": "Uploaded 3 files to inbox",
"filenames": [
"meeting-notes-2026-02-26.md",
"project-idea.md",
"contact-info.txt"
]
}
curl -X POST https://alfred.black/api/v1/vault/inbox/bulk \
-H "Authorization: Bearer alf_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"files": [
{
"filename": "meeting-notes-2026-02-26.md",
"content": "# Standup Notes\n\n- Alice: ML pipeline work"
},
{
"filename": "project-idea.md",
"content": "# New Project Idea\n\nBuild a knowledge graph..."
},
{
"filename": "contact-info.txt",
"content": "Name: David Lee\nEmail: david@example.com"
}
]
}'
{
"message": "Uploaded 3 files to inbox",
"filenames": [
"meeting-notes-2026-02-26.md",
"project-idea.md",
"contact-info.txt"
]
}
Was this page helpful?