Open an Investor Account
The Transact API gives your application the ability to create a Transact Personalised Illustration as well as prepopulate certain data points within the associated online portfolio application (known as a Guided Application). This streamlines the investor onboarding process, saves the adviser precious time and effort, and reduces risk.
Scenario
An adviser using your application wishes to illustrate for and open Transact portfolios for one to two applicants. These applicants may comprise one or two adults, or a child. The adviser has:
- a Transact number (they are registed with Transact)
- information about the applicants stored in your application.
Workflow
A theoretical workflow might consist of these steps:
-
The adviser initiates your Transact account opening integration
Within your application, the adviser initiates the process of opening a Transact portfolio, based on client information they already have in your system. This could be initiated by clicking a Create Illustration button.
-
Your application determines the adviser's Transact number
A Transact illustration is related to specific Transact adviser. In order to proceed, your application needs to know the adviser's Transact number. This can be looked up via the Get advisers endpoint. The adviser selects their Transact number. Your application may remember this number for next time.
-
The adviser reviews information
The adviser reviews the applicants' information (and potentially enriches it) within your application, before it is sent to Transact.
-
Your application creates a Transact Personalised Illustration
With the adviser's Transact number and the applicants' information, your application calls Transact's Prepopulate a Personalised Illustration endpoint, which creates a Transact Personalised Illustration and stores both the illustration, and data that can later be used to prepopulate a Guided Application.
While many of these data points are optional, to minimise rekeying you should provide all data you have available.
The endpoint returns a link that can be used to view and modify the illustration within Transact Online.
-
The adviser proceeds to Transact Online to complete the process
Your application may display the link returned in the previous step to the adviser (for example, in the form of a View Illustration button). Following the link, the adviser accesses their illustration within Transact Online, prefilled with all the information your application supplied.
The adviser may download the illustration, make it available to the applicants, and go on to complete the application using Transact Online.
Example implementation
This guide assumes you have already followed the Getting Started guide to register with Transact, and have implemented OAuth authentication. For this workflow, you'll need an access token for an adviser firm with the following scopes:
entity.readinvestor-illustration-profile
Determining an adviser's Transact number
Transact Personalised Illustrations belong to a specific adviser. In order to create one, you will need the adviser's Transact number. If you already have this information stored, good news - you can skip this step!
If you don't, you have a couple of options. You could:
- prompt the adviser for their number or
- call the Get advisers endpoint.
Prompting the adviser for their number will likely irritate them (especially if they mistype the number).
The Get advisers endpoint (GET /advisers) retrieves all advisers associated with the Resource Owner, which in this case is the adviser firm.
This allows the user to choose from a list of advisers.
This endpoint returns paginated data. The returned JSON looks something like:
Code
Simply look through each page for the adviser to be associated with the illustration, noting
their adviser id once found.
Creating a Transact Personalised Illustration
To kickstart the investor onboarding process, your application will call the
Prepopulate a Personalised Illustration endpoint
(POST /advisers/:id/prepop-apps).
This endpoint creates the Transact Personalised Illustration and registers certain data points that will also be
pre-populated in the subsequent Guided Application.
Your JSON request body might look something like the following:
Request body
The returned response contains information about the created illustration, as well as a unique link to access it on Transact Online:
Response body
Your application can then make the returned link available to the adviser.
Using the link, the adviser can complete and generate the Transact Personalised Illustration, as well as prepare and submit the associated Guided Application. They don't need to complete these steps in one go - the link will always take them back to where they last left off.
Advisers can also access any illustrations from the Personalised Illustrations and Applications menu on Transact Online.

