microappchild
Last updated
POST /api/microappchild/listcurl -X POST \
'https://your-buzzy-instance/api/microappchild/list?appID=123&fieldID=456' \
-H 'x-user-id: your-user-id' \
-H 'x-auth-token: your-auth-token'POST /api/microappchild/create{
"microAppResourceID": "string", // ID of the MicroApp resource
"appID": "string", // ID of the parent app item
"fieldID": "string", // ID of the parent field
"content": { // Content data for the child
"url": "string", // Optional: URL for file/image content
"filename": "string", // Optional: Filename for file content
"size": "number", // Optional: File size
"type": "string", // Optional: File type
"expiredAt": "number" // Optional: Expiration timestamp
}
}POST /api/microappchild/update{
"childID": "string", // ID of the child to update
"content": { // New content data
// Content fields to update
}
}POST /api/microappchild/delete{
"childID": "string" // ID of the child to delete
}