Delete a product
DELETE
/v1/products/{id} https://api.stripe.com/
Parameters
path Path Parameters
| Name | Type |
|---|---|
id
required
| string |
Request Body
application/x-www-form-urlencoded
{}
Responses
200 application/json
Successful response.
interface DeletedProduct {
deleted: true;
id: string;
object: "product";
}
deleted: true;
id: string;
object: "product";
}
default application/json
Error response.
interface Error {
error:ApiErrors ;
}
error:
}