Apps & Plugins
Give Feedback

Quickstart

Updated on July 14, 2026

Create a private free draft app, install it on a sandbox org, and call one scoped API — before AI Builder or Store listing.

Prerequisites

  • Tradeics Platform developer access (early access / account manager until self-serve GA).
  • A sandbox workspace.
  • Optional: CLI and REST V2 familiarity.

Steps

  1. Create developer app in Platform → Apps (or POST /apps/v2.0/developer-apps).
  2. Edit manifest — name, callback URL, minimal scopes (e.g. master:read).
  3. Register a health / handshake endpoint your runtime exposes.
  4. Install privately on the sandbox org.
  5. Exchange install for an install token; call one read API.
  6. Iterate — add a UI slot or webhook; keep it private until review-ready.
Authorization: Bearer <INSTALL_TOKEN>
Never use personal user tokens inside production app backends. Always use install tokens issued for the installation.

Success criteria

  • Sandbox admin sees the app under Installed.
  • Your runtime receives a signed install event.
  • One scoped REST call succeeds; an over-scoped call returns 403.

AI-accelerated path

Prefer AI Builder when you want a draft manifest + handlers from a natural-language brief — then return here to install and verify.

Next