Using the Shop Build & Publish API

In this walk-through, we will go through how a developer can call the Shop Build API to kick off a build of one or many Limio Landing Pages

Build

You can use the Limio Shop Build API to build one or many Limio pages. This is ideal to be used when changes have been made to multiple campaigns through referencing and all campaigns need to be rebuilt.

Options

items: This is a required Body parameter that contains the paths of the Limio pages to be built.

Build

POST https://{{limioTenant}}.prod.limio.com/api/shop/builds

Headers

Request Body

{
    "success": true, buildPaths: ["/offers/Limio Campaign", "/offers/Limio Switch"], id: "build-{{limioTenant}}-shop:xxxxx"
}

Publish

You can use the Limio Shop Publish API to publish one or many Limio pages. This is ideal to be used when changes have been made to multiple campaigns through referencing and all campaigns need to be republished after a successful rebuild.

Publish

POST https://{{limioTenant}}.prod.limio.com/api/publish

Headers

Request Body

{
    // Response
}

Last updated