Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.rebellapp.com/llms.txt

Use this file to discover all available pages before exploring further.

Get information about a file saved with my.saveFile.

Parameters

PropertyTypeRequiredDescription
apFilePathStringYesSaved file path
successFunctionNoCallback with info
failFunctionNoCallback on failure
completeFunctionNoCallback that always executes

Success Callback

PropertyTypeDescription
sizeNumberFile size in bytes
createTimeNumberCreation timestamp

Code Example

my.getSavedFileInfo({
  apFilePath: savedPath,
  success: (res) => {
    console.log('Size:', res.size);
    console.log('Created:', new Date(res.createTime));
  }
});