curl --request POST \
--url https://api.getmaxim.ai/v1/folders \
--header 'Content-Type: application/json' \
--header 'x-maxim-api-key: <api-key>' \
--data '
{
"workspaceId": "<string>",
"name": "<string>",
"parentId": "<string>",
"config": "<unknown>"
}
'{
"data": {
"id": "<string>",
"workspaceId": "<string>",
"name": "<string>",
"parentId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"config": null
}
}Create a new folder for organizing entities
curl --request POST \
--url https://api.getmaxim.ai/v1/folders \
--header 'Content-Type: application/json' \
--header 'x-maxim-api-key: <api-key>' \
--data '
{
"workspaceId": "<string>",
"name": "<string>",
"parentId": "<string>",
"config": "<unknown>"
}
'{
"data": {
"id": "<string>",
"workspaceId": "<string>",
"name": "<string>",
"parentId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"config": null
}
}Documentation Index
Fetch the complete documentation index at: https://www.getmaxim.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
API key for authentication
Unique identifier for the workspace
1Name of the folder
1Type of entity for the folder
WORKFLOW, PROMPT_CHAIN, DATASET, PROMPT, CONTEXT_SOURCE, PROMPT_COMPARISONS, LOG_REPOSITORY, PROMPT_TOOL, EVALUATOR ID of the parent folder, if any
Additional configuration for the folder. Can be any key-value pair.
Folder created successfully
Show child attributes
Was this page helpful?