๐REST API (WIP)
Fetch paginated products
GET api.we-saas.com/products
Get's full object
Request Body
Name
Type
Description
page
int
page number parameter (default is 1)
perPage
int
number of products per call (default is 20)
[
    "LicenseType":"trial",
    "LicenseCloudService" : 0,
    "PackageType" : "Mining",
    "Qty" : 2,
    "UserID" : 1,
    "LicenseOfflineService" : 1
]Get single product
GET api.we-saas.com/procuts/{id}
Fetch specific product by ID
Path Parameters
Name
Type
Description
ID*
String
Product ID
{
    "data": {
        "type": "product",
        "title": "Demo Product",
        "basePrice": 25.55,
        "totalPrice": "25.55โฌ",
        "attributes": {
            "slug": "hello-world",
            "title": "Hello World",
            "content": "..."
        }
    }
}REST API is in active development and this part of functionality is a subject to breaking changes without any notice
Last updated
Was this helpful?
