Urls
Get Product Urls
Get all existing product urls, along with their title. Allows Anonymous.
GET
/v1/products/urls
AuthorizationBasic <token>
Basic Authorization header using the Bearer scheme.
In: header
Authorization<token>
JWT Authorization header using the Bearer scheme.
In: header
Response Body
curl -X GET "https://loading/v1/products/urls"
[
{
"title": "string",
"productId": 0,
"clientProductId": "string",
"url": "string"
}
]
{
"message": "string",
"code": 0
}
{
"succeeded": true,
"errors": [
{
"message": "string"
}
]
}
How is this guide?