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
Authentication*
String
BEARER
Request Body
items*
JSON
An array of paths of the campaigns to be built: e.g.
[ "/offers/Limio Campaign", "/offers/Limio Switch" ]
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
Authentication*
String
BEARER
Request Body
tags*
JSON
An array of tags of the campaigns to be published: e.g.
["/tags/uk-uk/default", "/tags/uk-uk/standard"]
name*
String
Name of the campaign to be published.
This is required to be the name of at least one of the campaigns being published for validation.
buildId*
String
This can be found in the response from the Build API with a key of Id. It will start with: "build-{{limioTenant}}-shop:"
Last updated