Updating a product's status to Active or Inactive via API?

Hi team,

Are we able to change a product’s status from Active to Inactive via API?

Best Regards,
Edwin

That is not something that is currently available.

Hi Theresa, is this a feature that is in the pipeline?

Hello @Edwin!
Yes, that feature has already been accepted and is already in our backlog.
Unfortunately, I don’t have an ETA right now for the completion date.
Have a great day!
TomasFD

is it still not available yet ?

Hey @chaher,

Thanks for hanging in there!

This feature is available under the warehouse_product_update mutation:

mutation {
  warehouse_product_update(
    data: { sku: "string", warehouse_id: "string", active: Boolean }
  ) {
    request_id
    complexity
    warehouse_product {
      id
      legacy_id
      active
    }
  }
}

Best,
RayanP