{"section":"known-issues","requestedLocale":"en","requestedSlug":"remove-supplier-info-from-product-not-working-via-admin","locale":"en","slug":"remove-supplier-info-from-product-not-working-via-admin","path":"docs/en/known-issues/Catalog/remove-supplier-info-from-product-not-working-via-admin.md","branch":"main","content":"## Summary\n\n\nWhen trying to remove the supplier info from a product and saving the product via Admin, despite getting a successful response, the information persists.\n\nWhen opening again the product page, is possible to see the supplier info still there.\n\n\n#### Simulation\n\n\n\n1. Add a supplier to a product and save it;\n2. Enter again the product and check that the supplier info is correctly there;\n3. Remove the supplier info from the product and save it;\n4. Enter again the product and check that the supplier info is still there.\n\n\n#### Workaround\n\n\nDelete this info using product update API:\nhttps://developers.vtex.com/docs/api-reference/catalog-api#put-/api/catalog/pvt/product/-productId-\n\nSet the field `SupplierId` as `null`\n\n    curl --location --globoff --request PUT 'https://.vtexcommercestable.com.br/api/catalog/pvt/product/' \\--header 'Accept: application/json' \\ --header 'Content-Type: application/json' \\ --header 'X-VTEX-API-AppKey: ' \\ --header 'X-VTEX-API-AppToken: ' \\--data '\\{ \"Name\": \"insert product test\", \"DepartmentId\": 1, \"CategoryId\": 2, \"BrandId\": 2000000, \"LinkId\": \"insert-product-test\", \"RefId\": \"310117869\", \"IsVisible\": true, \"Description\": \"texto de descrição\", \"DescriptionShort\": \"Utilize o CEP 04548-005 para frete grátis\", \"ReleaseDate\": \"2019-01-01T00:00:00\", \"KeyWords\": \"teste,teste2\", \"Title\": \"product de teste\", \"IsActive\": true, \"TaxCode\": \"\", \"MetaTagDescription\": \"tag test\", \"SupplierId\": null, \"ShowWithoutStock\": true, \"AdWordsRemarketingCode\": null, \"LomadeeCampaignCode\": null, \"Score\": 1\\}'"}