How to list products

Configure the API to list your products in the system.
Written by Beeping Fulfilment
Updated 10 months ago

This method lists all the products of a user in the system. To access this step, you must first perform the basic authentication.

The data you need to know are:

Method: GET

Uri: api/products

Endpoint: http://app.gobeeping.com/api/products

Curl Example

curl --location --request GET 'http://app.gobeeping.com/api/products?page=1' \
--header 'Authorization: Basic XXXXXXXXXX'

In order to perform the GET method, you need to identify the following element:

  • 'Authorization: Basic XXXXXXXXXXXXXXXX' : here you must place the Basic Auth obtained in the previous step: how to login.

In these other articles you can learn how to create a product and how to update a product.

Did this answer your question?