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
- Create developer app in Platform → Apps (or
POST /apps/v2.0/developer-apps). - Edit manifest — name, callback URL, minimal scopes (e.g.
master:read). - Register a health / handshake endpoint your runtime exposes.
- Install privately on the sandbox org.
- Exchange install for an install token; call one read API.
- 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.