list_delivery_options

Updated September 9, 20261 min read

List delivery options for a tenant via GET /delivery-options. Pagination starts at page 1. Use optional select with json-mask syntax to return only required fields.

Parameters

NameTypeRequiredDescription
tenantIdstringYes
carrier_account_idarray or stringNo
customer_countryarray or stringNo
location_idarray or stringNo
merchantarray or stringNo
pagestringNoPage number, starting at 1.
page_sizestringNo
paginationboolean or stringNo
search_stringstringNo
selectstringNojson-mask expression to filter response fields.
statusarray or stringNo

Returns

items — an array of delivery option records (id, code, name, delivery method, status, merchant, shipping fee, conditions) — plus pagination with total and page.

Example agent prompt

"Which delivery options does the ACME merchant offer?"

list_delivery_options(
  tenantId="…",
  merchant="ACME",
  status="ACTIVE",
  select="items(id,code,name,delivery_method,status)"
)