Send Admin AP request to Update Product Type

I need to update Product Type to “Wide Leg” if “Wide Leg” is in the title. Using Flow, I look for Wide Leg in the title, and, if found, I use the Send Admin API request below to make the change, but nothing happens. The trigger is “Product status updated”, so I toggle product status to initiate the change but nothing is happening. Is the Send Admin API request snippet below correct to update Product Type? Thanks.

{
“input”: {
“productType”: “Wide Leg”,
“id”: “{{ product.id }}”
}

Closing brace is missing, should be

{
  "input": {
    "productType": "Wide Leg",
    "id": "{{ product.id }}"
  }
}

This works in my test store:

That was it. Thanks.