Card details and PIN are both served from a single hosted page. Control which views appear using enabled_views. The returned secure_view_url is ready to use as an iframe src — no additional SDK is required.
interface ViewTokenResponse { secure_view_url: string; // Hosted page URL — use as iframe src expires_at: string; // ISO 8601 expiry last_four: string; // Safe to display without the iframe enabled_views: string[]; // Active views: ["data"] | ["pin"] | ["data", "pin"] requires_access_code: boolean; // User must enter access_code before details are shown}