GET
: the type of request of the endpoint. Options we use can be PUT, POST, DELETE and GET.https://api.outshifter.com/catalog/users/:id/products
: The endpoint itself, the address to send the required operation.Multiple products by user id
: The endpoint titlePath
: It is a parameter that is included in the address of the endpoint. In the example, it is the user id.Header
: We use it primarily for the authentication. Each endpoint that requires it, should include it in the header.Body
: The payload. In the example, it is the possibility to apply filters, but it can also be an object with information required to create a new user.