The following example runs an existing Report Program with a given set of inputs.


# We will use a region that defines an 160 meter cube centered in the origin

region = '1,-80,80,-80,-80,80,-80,80,80,-80,80'

result = vf.create_report(

    project=project

    program=report_lambda_id

    region=region,

    lod=0,

    name='Volume of Cube'

    fields={}, 

    inputs={

        'entity' : voxmesh_id

    })

if not result.success:

    print(result.error_info)

    exit()

report_id = result.id


For more information on regions and how to trigger report programs, please check out the Triggering Reports topic.