Actions run backend logic on a resource.
POST {baseRoute}/actions/{actionUriKey}{ "fields": [ { "name": "...", "value": "..." } ] }final res = await repo.actions(
actionUriKey: 'expire-items',
data: LaravelRestApiActionsBody(
fields: [
Action(name: 'expires_at', value: '2025-12-31'),
],
),
);
print(res.data); // impacted