Get Result Region
PresignedUrl sheets().getResultTable(SheetGetResultTableParamsparams, RequestOptionsrequestOptions = RequestOptions.none())
GET/api/v1/sheets/jobs/{spreadsheet_job_id}/regions/{region_id}/result/{region_type}
Get Result Region
package ai.llamaindex.llamacloud.example;
import ai.llamaindex.llamacloud.client.LlamaCloudClient;
import ai.llamaindex.llamacloud.client.okhttp.LlamaCloudOkHttpClient;
import ai.llamaindex.llamacloud.models.files.PresignedUrl;
import ai.llamaindex.llamacloud.models.sheets.SheetGetResultTableParams;
public final class Main {
private Main() {}
public static void main(String[] args) {
LlamaCloudClient client = LlamaCloudOkHttpClient.fromEnv();
SheetGetResultTableParams params = SheetGetResultTableParams.builder()
.spreadsheetJobId("spreadsheet_job_id")
.regionId("region_id")
.regionType(SheetGetResultTableParams.RegionType.CELL_METADATA)
.build();
PresignedUrl presignedUrl = client.sheets().getResultTable(params);
}
}{
"expires_at": "2019-12-27T18:11:19.117Z",
"url": "https://example.com",
"form_fields": {
"foo": "string"
}
}Returns Examples
{
"expires_at": "2019-12-27T18:11:19.117Z",
"url": "https://example.com",
"form_fields": {
"foo": "string"
}
}