JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.facetflux.com/api/v1/pim/products/{productId}/enrichment', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));using RestSharp;
var options = new RestClientOptions("https://app.facetflux.com/api/v1/pim/products/{productId}/enrichment");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
HttpResponse<String> response = Unirest.get("https://app.facetflux.com/api/v1/pim/products/{productId}/enrichment")
.header("Authorization", "Bearer <token>")
.asString();{
"tenantId": "<string>",
"productId": "<string>",
"status": 123,
"mode": 123,
"fieldSuggestions": {},
"createdAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z",
"errorMessage": "<string>",
"createdByUserId": "<string>",
"id": "<string>",
"idCreated": "2023-11-07T05:31:56Z"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}Enrichment
Get apiv1pimproducts enrichment
GET
/
api
/
v1
/
pim
/
products
/
{productId}
/
enrichment
JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.facetflux.com/api/v1/pim/products/{productId}/enrichment', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));using RestSharp;
var options = new RestClientOptions("https://app.facetflux.com/api/v1/pim/products/{productId}/enrichment");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
HttpResponse<String> response = Unirest.get("https://app.facetflux.com/api/v1/pim/products/{productId}/enrichment")
.header("Authorization", "Bearer <token>")
.asString();{
"tenantId": "<string>",
"productId": "<string>",
"status": 123,
"mode": 123,
"fieldSuggestions": {},
"createdAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z",
"errorMessage": "<string>",
"createdByUserId": "<string>",
"id": "<string>",
"idCreated": "2023-11-07T05:31:56Z"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}Authorizations
Your FacetFlux API key, minted under Settings → API keys.