Quickstart
Last updated: July 1, 2026
Use this page for a fast Runtime Suite deployment and verification. For a full launch checklist across every supported surface, use Runtime Suite Install and Verify.
1. Choose Runtime Surface
Section titled “1. Choose Runtime Surface”| Use case | Start here |
|---|---|
| Custom website or direct script embed | Web Setup |
| Google Tag Manager deployment | Google Tag Manager (GTM) Template Guide |
| WordPress site | WordPress Integration |
| Android app | Android Setup |
| iOS app | iOS Setup |
2. Web Quickstart
Section titled “2. Web Quickstart”Add the loader as high as possible in the page <head>:
<script id="cybexo-cmp" data-settings-id="YOUR_SETTINGS_ID" src="https://cmp.cybexo.com/loader.js"></script>Expected result:
- CYBEXO loader appears once
- Consent Mode default is initialized before tags that require consent
- banner behavior matches the configured region and policy
3. GTM Quickstart
Section titled “3. GTM Quickstart”- Add the CYBEXO GTM Consent Template from the GTM Community Template Gallery.
- Create a CYBEXO CMP tag.
- Set the customer Settings ID.
- Trigger on Consent Initialization - All Pages.
- Publish and validate in Tag Assistant.
4. WordPress Quickstart
Section titled “4. WordPress Quickstart”- Install Cybexo CMP from WordPress.org.
- Enter the customer Settings ID in plugin settings.
- Keep auto-inject enabled unless CYBEXO support instructs otherwise.
- Load the site and confirm one
cybexo-cmploader script.
5. iOS Quickstart
Section titled “5. iOS Quickstart”Add the CocoaPods dependency:
pod 'CybexoSDK', '~> 1.0'Initialize once at startup:
import CybexoSDK
CybexoCMP.shared.initialize(settingsId: "YOUR_SETTINGS_ID")CybexoCMP.shared.showBanner(force: true)6. Android Quickstart
Section titled “6. Android Quickstart”Add the Maven Central dependency:
dependencies { implementation("com.cybexo:android-sdk:1.0.0")}Initialize once from an Activity:
import com.cybexo.cmp.CybexoCMP
CybexoCMP.initialize(activity, "YOUR_SETTINGS_ID") { // CYBEXO is ready.}7. Verify Runtime
Section titled “7. Verify Runtime”After deployment, use Runtime Verification.
Minimum passing evidence:
- Pulse runtime status is
pass - detected brand is
cybexo - detected loader is
https://cmp.cybexo.com/loader.jsfor web/CMS/GTM - detected surface matches the installation method
- report includes version/build/channel/commit when loader inspection is available
- Pulse report link is saved with launch evidence
- Command Center runtime status is reviewed when the property is connected
8. Rollback
Section titled “8. Rollback”| Surface | Rollback |
|---|---|
| Direct web | Remove the script tag and clear page/CDN cache |
| GTM | Pause or remove the CYBEXO CMP tag and publish |
| WordPress | Disable auto-inject or deactivate the plugin |
| Android | Roll back to the previous app release |
| iOS | Roll back to the previous app release |