Skip to main content

Get the catalog release as shoppers

GET 

https://euwest.api.elasticpath.com/catalog

Returns a list of all published releases of the specified catalog.

Request

Responses

The catalog.

Authorization: Authorization

name: Authorizationtype: httpin: headerscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://euwest.api.elasticpath.com/catalog");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <Authorization>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://euwest.api.elasticpath.com
Auth
Parameters
— header
— header
— header
ResponseClear

Click the Send API Request button above and see the response here!