Delete Product Image - Sellercloud API Docs

Overview

Endpoint is used for deleting product image.

In order to do that, you must:

For information on how you can authenticate, see: Authentication

As soon as you do authentication and receive a valid token, it needs to be send in the next call to the API.

Endpoint

Example for such endpoint for TT server is

https://tt.api.sellercloud.com/rest/api/ProductImage/1

For your server endpoint will be:

https://{your_server_id}.api.sellercloud.com/rest/api/ProductImage/{id}

Request

Parameter Data Type Description Is Required
id int ID of the image Yes

Response

Demo in C#

string token = "test_token";
string url = $"http://cwa.api.sellercloud.com/api/ProductImage/1";

using (var client = new HttpClient())
            {
                client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token);

await client.SendAsync(request);
            }