Permission: Read · Workspace: required (from goody_workspaces_list)
Lists previously-sent gift batches in a workspace, most recent first. This is how you answer “what did I send recently?”.
Parameters
Workspace UUID — from goody_workspaces_list. Listing is always scoped to this workspace.
Page number, starting at 1.
Batches per page. Defaults to 25, max 100.
Returns
Batch summaries, most recent first. Each object also includes additional summary fields beyond those listed here. Where the batch is in its lifecycle.
The “From” name recipients see.
Number of orders in the batch.
When the batch is scheduled to send, if scheduled.
Total number of batches across all pages.
Example
💬 Prompt
🔧 Tool call
↩️ Result
"Show me my last few gifts."
{
"name" : "goody_order_batches_list" ,
"arguments" : { "workspace_id" : "3f8a…" , "per_page" : 3 }
}
{
"order_batches" : [
{
"id" : "b92e…" ,
"batch_name" : "Q2 client thank-yous" ,
"send_status" : "sent" ,
"from_name" : "Jordan at Acme" ,
"message" : "Thank you for a great quarter, {{firstname}}!" ,
"orders_count" : 12 ,
"recipients_count" : 12 ,
"scheduled_send_on" : null
},
{
"id" : "4a07…" ,
"batch_name" : "Welcome — new hires" ,
"send_status" : "scheduled" ,
"from_name" : "The Acme Team" ,
"message" : "Welcome aboard, {{firstname}}!" ,
"orders_count" : 3 ,
"recipients_count" : 3 ,
"scheduled_send_on" : "2026-07-01T09:00:00Z"
}
],
"total_count" : 47
}