Retrieve Multiple Products

Request

GET https://backend.net0.com​/v1​/products

This endpoint allows to you retrieve a list of all the products/SKU records available.

curl --location --request GET 'https://backend.net0.com/v1/products' \
--header 'x-api-key: <API_KEY>' \
--data-raw ''

Response

The response is an array containing all the available products

[
    {
        "id": 2,
        "name": "Test Opemipo",
        "companyId": 2,
        "totalEmission": null,
        "weight": 20,
        "referenceNumber": "wrwje-wenwfefw-cscsns",
        "logoImageUrl": "https://aws.amazonserveivce.net",
        "emissionKindId": "b3a6bba1-fb25-4797-9e4a-17154a946868",
        "createdAt": "2021-11-24T12:39:37.775Z",
        "updatedAt": "2021-11-24T12:39:37.775Z",
        "materialsProduct": []
    },
    {
        "id": 1,
        "name": "Test",
        "companyId": 2,
        "totalEmission": null,
        "weight": 11,
        "referenceNumber": "432",
        "logoImageUrl": null,
        "emissionKindId": "b3a6bba1-fb25-4797-9e4a-17154a946868",
        "createdAt": "2021-11-22T12:44:40.436Z",
        "updatedAt": "2021-11-22T12:44:40.436Z",
        "materialsProduct": []
    }
]