Introduction
The Praemium Application Programming Interface (API) enables your organisation to access account, investment, investor or model information from our systems securely and on demand. This can be used in a batch or real-time nature depending on your needs and data lifecycle.
This site provides you with full details of each of the endpoints in the API, including parameters, validation tips, and what to expect in our response.
If you are interested in using our API please contact your relationship manager or support team. They can answer any queries you may have and ensure all our compliance and contractual requirements are met. If you are not currently a customer, please register your interest with our sales team by visiting your local contact page https://www.praemium.com/
After your request to use our API has been approved, you're ready to start developing, please contact our Client Services team to obtain credentials that allows access to our test environment. Once your application is fully developed, you can request credentials for the Production environment. We have a number of different endpoints available, below is a summary of the endpoint availability based on our products, roles and regions:
Read | Read/Create | Enterprise | |
---|---|---|---|
Account | ✔ | ✔ | ✔ |
Performance | ✔ | ✔ | ✔ |
Tax | ✔ | ✔ | ✔ |
Transactions | ✔ | ✔ | ✔ |
Income | ✔ | ✔ | ✔ |
Expenses | ✔ | ✔ | ✔ |
Reports and Files | ✔ | ✔ | ✔ |
Single Sign On (SSO) | ✔ | ✔ | ✔ |
Product Information (PDS) | ✔ | ✔ | |
User Management | ✔ | ✔ | |
Linking Users | ✔ | ✔ | |
Draft Applications | ✔ | ✔ | |
Bulk and Bespoke Routes | ✔ |
If there are any endpoints that you require and we have not listed, please contact for further information. Alternatively our Upload Centre and automatic file/data exchange (via SFTP or other supported protocols) is available for the bulk collection of data or management of users, accounts or settings.
Investment Manager specific API functionality | |
---|---|
Investment Models | ✔ |
Investment Model management | ✔ |
Investment or Model Managers can access and manage their models within the system via a specialised set of APIs. This includes the setting or updating of investment selection, accessing model FUM, Performance and other information.
Versioning
Specifying a Version
The API is versioned so that we can continually release new features and improvements without affecting existing implementations.
To specify the API version, simply add the HTTP header x-pps-api-version to each request as shown below:
x-pps-api-version: v1
Documentation related to previous versions can be found here.
Product Subscription
Product subscription key is required for accessing corresponding endpoints and should be added to your request as below:
x-pps-subscription-key: d3e30ecd1ab345...
Please log into our developer portal to subscribe to a product and generate corresponding product subscription key.
Authorisation
In order to access the Premium API, you will need to be granted a OAuth 2.0 client to authenticate and authorise your application.
Applications that try to access the API without a valid access token will receive a 403 (Forbidden) response.
To make calls to the API, get access token via our token endpoint and add access token as the Authorization header value in each HTTP request.
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
POST Access Token
Definition: https://api.onpraemium.com/api/token
This endpoint returns access token that can be used to access public API endpoints.
Header Examples
Content-Type: application/x-www-form-urlencoded
Header Parameters
Parameter | Type | Description |
---|---|---|
Content-Typerequired | string | Must be application/x-www-form-urlencoded |
Request Parameter - Body Examples
client_id=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX&client_secret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
Client_idrequired | string | OAuth 2.0 client ID provided by Praemium. |
Client_secretrequired | string | OAuth 2.0 client secret provided by Praemium. |
Response Examples
# 200 - OK
{
"token_type": "Bearer",
"expires_in": 3599,
"ext_expires_in": 3599,
"access_token": "eyJ0eXAiOiJKV1QiLCJhbGc..."
}
Response Parameters
Parameter | Type | Description |
---|---|---|
token_type | string | Token type is always Bearer. |
expires_in | integer | After how many seconds an access token will expire. |
ext_expires_in | integer | Extended lifetime of access token if value of this field is greater than value of expires_in. |
access_token | string | Access token that can be used to access public API endpoints. |
PDS
GET PDS
Definition: https://api.onpraemium.com/api/pds
This endpoint returns the PDS details for the service.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Response Examples
# 200 - OK (AU response)
[
{
"Id": "AU1",
"Name": "Praemium Managed Accounts",
"MaxNoOfBankAccounts": 5,
"IsSuperSma": false,
"Status": "Active",
"Region": "Australia",
"Models": [
{
"Id": "AU2710",
"Name": "CKI HOLDINGS ORD",
"Style": "",
"Code": "1038.HKG"
}
],
"Fees": [
{
"Type": "Establishment",
"Class": "Adviser",
"Name": "Establishment Fee",
"DollarOverwriteSettings": {
"MinAmount": 0.0,
"MaxAmount": 90909.0909,
"MinAmountWithTax": 0.0,
"MaxAmountWithTax": 100000.0
},
"DefaultValue": 0.0,
"DefaultValueWithTax": 0.0,
"DefaultType": "Dollar"
}
{
"Id": "AU32",
"Type": "FeeTable",
"Class": "NonAdviser",
"Name": "SMA Administration Fee",
"Tiers": [
{
"ValueAppliedFrom": 0.0,
"FeePercent": 0.336364,
"FeePercentWithTax": 0.37
},
{
"ValueAppliedFrom": 250001.0,
"FeePercent": 0.272727,
"FeePercentWithTax": 0.3
},
{
"ValueAppliedFrom": 500001.0,
"FeePercent": 0.181818,
"FeePercentWithTax": 0.2
},
{
"ValueAppliedFrom": 1000001.0,
"FeePercent": 1E-10,
"FeePercentWithTax": 0.0
}
],
"DefaultValue": 0.336364,
"DefaultValueWithTax": 0.37,
"DefaultType": "Percent",
"IndexationSettings": {
"Type": "Both",
"TypeAllowed": "Both",
"Value": 0.0,
"ValueMax": 0.0
}
}
],
"BankAccountUsages": [
{
"Usage": "SMAFEE",
"Description": "Fee offset",
"IsMandatory": false,
"HelpText": "If no bank account is selected, fees will be deducted from your cash holding."
}
],
"TaxOptions": [
{
"Code": "WTFN",
"Description": "Resident with TFN"
}
]
}
]
# 200 - OK (UK response)
[
{
"Id": "UK87",
"Name": "Westminster - US GBP",
"MaxNoOfBankAccounts": 0,
"DisableCustomisations": false,
"IsSuperSma": false,
"ServiceId": "UK1000000112",
"ServiceName": "PIL DPS GBP",
"Region": "International",
"Models": [
{
"Id": "UK1000001282",
"Name": "LGT Vestra US Ethical",
"Style": "MAM",
"Code": "LGT Vestra Ethical",
"ManagerName": "Model Manager Firm 5192",
"FeeOverride": {
"Value": 0.0,
"IsTiered": false
}
}
],
"Fees": [
{
"Id": "UK1",
"Type": "Establishment",
"Class": "Adviser",
"Name": "Initial Investment",
"DollarOverwriteSettings": {
"MinAmount": 0.0,
"MaxAmount": 0.5,
"MinAmountWithTax": 0.0,
"MaxAmountWithTax": 0.5
},
"PercentOverwriteSettings": {
"MinAmount": 0.0,
"MaxAmount": 0.5,
"MinAmountWithTax": 0.0,
"MaxAmountWithTax": 0.5
},
"DefaultValue": 0.0,
"DefaultValueWithTax": 0.0,
"DefaultType": "Percent"
}
],
"BankAccountUsages": [
{
"Usage": "CASHCON",
"Description": "Initial Contribution",
"IsMandatory": false,
"HelpText": "This is bank account we will user for your initial payment."
}
],
"TaxOptions": [
{
"Code": "Standard Income Bracket",
"Description": "The standard income bracket for most investors."
}
],
"CurrencyCode": "GBP",
"AvailableAccountTypes": [
"Sipp",
"OffshoreBond",
"RtsRats",
"Standard",
"Qrops",
"PersonalPension",
"Isa",
"GroupSipp",
"Pra",
"Pera",
"Jisa",
"Gia"
],
"Products": [
{
"Id": "UK1",
"IsSingleBankAccount": false,
"ProductProviderName": "Talbot & Muir",
"ProductName": "TM SIPP",
"TaxWrapperId": 9,
"AvailableModelCodes": [
"LGT Vestra Ethical",
"LGT VUSHRGBP",
"LGT VUSISA",
"LGT VUSLRGBP",
"LGT VUSMRGBP",
"Managed Account Cash GBP",
"WavertonUSBalPortGBP",
"WavertonUSCauPortGBP",
"WavertonUSGroPortGBP",
"WavertonUSISA"
],
"DisableAdviserFeesUk": false,
"DisableAdviserFeesInternational": false
}
]
}
]
Response Parameters
Parameter | Type | Description |
---|---|---|
Id | string | ID of the PDS. |
Name | string | Name of the PDS. |
MaxNoOfBankAccounts | integer | Maximum number of bank accounts allowed by the PDS. |
IsSuperSma | boolean | If the PDS is specific to SuperSMA. |
Status | string | Status of the PDS, active = 1, closed = 2. |
ServiceId | string | Service ID. |
ServiceName | string | Service Name. |
Region | integer | Australia, UnitedKingdom or International. |
CurrencyCode | string | Currency code for the PDS. |
Fees | array | Fees associated to the PDS. |
Fees.Id | string | ID of fee. |
Fees.Type | enum | FeeTable = 0, Contribution = 1, Establishment = 2, Termination = 3, Withdrawal = 4, Ongoing = 5. |
Fees.Class | enum | Adviser = 1, NonAdviser = 2. |
Fees.Name | string | Name of fee. |
Fees.Tiers | array | Tiers of fee. |
Fees.Tiers.ValueAppliedFrom | double | Date the value is applied from. |
Fees.Tiers.FeePercent | double | Fee percent. |
Fees.Tiers.FeePercentWithTax | double | Fee percent with tax. |
Fees.DollarOverwriteSettings | object | Dollar overwrite settings. |
Fees.DollarOverwriteSettings.MinAmount | double | Fee overwrite minimum amount. |
Fees.DollarOverwriteSettings.MaxAmount | double | Fee overwrite maximum amount. |
Fees.DollarOverwriteSettings.MinAmountWithTax | double | Fee overwrite minimum amount with tax. |
Fees.DollarOverwriteSettings.MaxAmountWithTax | double | Fee overwrite maximum amount with tax. |
Fees.PercentOverwriteSettings | object | Percent overwrite settings. |
Fees.PercentOverwriteSettings.MinAmount | double | Fee overwrite minimum amount. |
Fees.PercentOverwriteSettings.MaxAmount | double | Fee overwrite maximum amount. |
Fees.PercentOverwriteSettings.MinAmountWithTax | double | Fee overwrite minimum amount with tax. |
Fees.PercentOverwriteSettings.MaxAmountWithTax | double | Fee overwrite maximum amount with tax. |
Fees.DefaultValue | double | Default value of overwrite. |
Fees.DefaultValueWithTax | double | Default value of overwrite with tax. |
Fees.DefaultType | enum | Dollar = 1, Percent = 2. |
Fees.IndexationSettings | object | Indexation settings. |
Fees.IndexationSettings.Type | enum | None = 0, Both = 0, Cpi = 1, Custom = 2. |
Fees.IndexationSettings.TypeAllowed | enum | None = 0, Both = 0, Cpi = 1, Custom = 2. |
Fees.IndexationSettings.Value | double | Fee indexation value. |
Fees.IndexationSettings.ValueMax | double | Fee indexation maximum value. |
BankAccountUsages | array | This allows you to define a regular cash addition or withdrawal from the SMA or SuperSMA. |
BankAccountUsages.Usage | string | This allows you to define a regular cash addition or withdrawal from the account. |
BankAccountUsages.Description | string | This will advise the bank account usage. |
BankAccountUsages.IsMandatory | boolean | If the bank account is mandatory, true or false. |
BankAccountUsages.HelpText | string | Help text with regards to the bank account. |
TaxOptions | array | Tax options for the PDS. |
TaxOptions.Code | string | Tax Option code. |
TaxOptions.Description | string | Tax option description. |
Models | array | List of available models. |
Models.Id | string | ModelId as returned by the Models endpoint. |
Models.Name | string | Model name. |
Models.Style | string | Model style. |
Models.Code | string | Model code. |
Models.ManagerName | string | Model Manager name. |
Models.FeeOverride | object | Fee override. |
Models.FeeOverride.Name | string | Name of the fee override. |
Models.FeeOverride.Id | string | Fee override ID. |
Models.FeeOverride.Value | double | Fee override value. |
Models.FeeOverride.IsTiered | boolean | If the fee override is tiered. |
Models.FeeOverride.Tiers | array | The fee override tier if applicable. |
Models.FeeOverride.Tiers.From | double | Date from when the fee tier is applicable. |
Models.FeeOverride.Tiers.Percentage | double | Fee percentage. |
AvailableAccountTypes | array | Type of account you would like to ope such as Isa/Sipp/RtsRats/Qrops/OffshoreBond. |
Products | array | Products for the PDS. |
Products.Id | string | Product ID. |
Products.IsSingleBankAccount | boolean | Is a single bank account, true or false. |
Products.ProductProviderName | string | Product provider name. |
Products.ProductName | string | Product name. |
Products.TaxWrapperId | integer | Tax wrapper ID. |
Products.AvailableModelCodes | array | List of available model codes. |
Products.DisableAdviserFeesUk | boolean | Disable adviser fees UK. |
Products.DisableAdviserFeesInternational | boolean | Disable adviser fees International. |
Applications
POST Individual Applicant & Individual Account - AU
Definition: https://api.onpraemium.com/api/application
This endpoint creates a individual applicant and account in the system.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AdviserId": 123456,
"Applicants": [
{
"ApplicantType": 0,
"IndividualDetails": {
"Title": "Mr",
"FirstName": "John",
"LastName": "Smith",
"Email": "j.smith@example.com",
"Phone": "012489235",
"PhoneOther": "012489235",
"Gender": 1,
"HomeAddress": {
"Street": "123 Test St",
"Postcode": "3000",
"Suburb": "Melbourne",
"State": "VIC",
"CountryCode": "AUS"
},
"MailingAddress": {
"Street": "123 Test St",
"Postcode": "3000",
"Suburb": "Melbourne",
"State": "VIC",
"CountryCode": "AUS"
},
"Identifications": [
{
"Type": 0,
"Value": "123456789"
},
{
"MissingReason": 1,
"MissingReasonText": "test"
}
],
"IsPoliticallyExposedPerson": true,
"PepDetails": "Senior politician"
}
}
],
"Accounts": [
{
"Name": "Miss Jane Smith",
"RegisteredName": "Miss Jane Smith",
"ShortName": "Jane",
"AccountType": 14,
"PdsId": "AU5",
"Fees": [
{
"Id": "AU21871",
"Rate": 0,
"Unit": "Dollar"
}
],
"Models": [
{
"Code": "AU0001",
"Proportion": 50
},
{
"Code": "IN0001",
"Proportion": 50
}
],
"BankAccounts": [
{
"Bsb": "12012",
"AccountNumber": "6555555567",
"AccountName": "Jane Smith",
"Usages": [
"Income",
"CashContribution"
]
}
],
"Exclusions": [
{
"Code": "AU0002",
"Exchange": "ASX"
}
],
"InitialInvestment": {
"Cash": 132.12,
"Shares": 321.32,
"Method": 0
}
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AdviserIdrequired | integer | Adviser ID to create the application under. |
OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicantsrequired | array | Objects containing the applicant data. There must be at least one applicant for the request to succeed. The array of objects may contain a mix of Individual and Corporate applicants. |
Applicants.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicants.ApplicantType | enum | Individual = 0. |
Applicants.IndividualDetails | object | Used for Individual applicants. |
Applicants.IndividualDetails.Title | string | Title: Mr, Mrs, Ms, Miss, Doctor, Lady, Prof and Sir. |
Applicants.IndividualDetails.FirstName | string | First name of individual. |
Applicants.IndividualDetails.LastName | string | Last name of individual. |
Applicants.IndividualDetails.DateOfBirth | date-time | Date of birth of the individual. |
Applicants.IndividualDetails.Email | string | Email address of the individual. |
Applicants.IndividualDetails.Phone | string | Primary contact number of the individual. |
Applicants.IndividualDetails.PhoneOther | string | Other phone of the individual. |
Applicants.IndividualDetails.Genderrequired | enum | Male = 1, Female = 2. |
Applicants.IndividualDetails.UserName | string | User Name of individual applicant. |
Applicants.IndividualDetails.UserId | string | User ID of individual applicant. |
Applicants.IndividualDetails.IsPoliticallyExposedPerson | boolean | Whether applicant is politically exposed. |
Applicants.IndividualDetails.PepDetails | string | If applicant is politically exposed, details must be supplied. |
Applicants.IndividualDetails.TaxResidenceCountryCode | string | Tax residence country code. |
Applicants.IndividualDetails.CitizenshipCountryCode | string | Citizenship country code. |
Applicants.IndividualDetails.Identifications | array | Array of TFN / ABN. |
Applicants.IndividualDetails.Identifications.Type | enum | Tfn = 0, Tin = 2. |
Applicants.IndividualDetails.Identifications.Value | string | Identification value of applicant. |
Applicants.IndividualDetails.Identifications.MissingReason | enum | CountryDoesntIssue = 1, DontNeedOne = 2, Other = 99. |
Applicants.IndividualDetails.Identifications.MissingReasonText | string | Reason identification of applicant is missing. |
Applicants.IndividualDetails.HomeAddress | object | Home address of individual applicant. |
Applicants.IndividualDetails.HomeAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.HomeAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.HomeAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.HomeAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.HomeAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.HomeAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.HomeAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.IndividualDetails.MailingAddress | object | Mailing address of individual applicant. |
Applicants.IndividualDetails.MailingAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.MailingAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.MailingAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.MailingAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.MailingAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.MailingAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.MailingAddress.IsRegistered | boolean | Whether address is registered. |
Accounts | array | Array of accounts to be opened with the application. Must be linked to an included applicant. |
Accounts.Name | string | Account name. |
Accounts.RegisteredName | string | Account registered name. |
Accounts.ShortName | string | Account short name. |
Accounts.AccountTyperequired | enum | Individual = 14. |
Accounts.PdsId | string | PDS ID of account. |
Accounts.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Accounts.Fees | array | Account fees. |
Accounts.Fees.Id | string | Fee ID. |
Accounts.Fees.Rate | double | Fee rate. |
Accounts.Fees.Unit | string | Fee unit, dollars or percentage. |
Accounts.Models | array | Account models. |
Accounts.Models.Code | string | Model code. |
Accounts.Models.Proportion | double | Proportion of model. |
Accounts.BankAccounts | array | Bank accounts. |
Accounts.BankAccounts.Bsb | string | Bank account BSB. |
Accounts.BankAccounts.AccountNumber | string | Bank account number. |
Accounts.BankAccounts.AccountName | string | Bank account name. |
Accounts.BankAccounts.Usages | array | This allows you to define a regular cash addition or withdrawal from the SMA or SuperSMA. |
Accounts.Exclusions | array | Account exclusions. |
Accounts.Exclusions.Security | object | Security code of the exclusion. |
Accounts.Exclusions.Security.Code | string | Security code of the security. |
Accounts.Exclusions.Security.Exchange | string | Exchange code of the security. |
Accounts.InitialInvestment | object | Initial investment of account. |
Accounts.InitialInvestment.Cash | double | Select if the initial investment will include cash. |
Accounts.InitialInvestment.Shares | double | Select if the initial investment will include shares. |
Accounts.InitialInvestment.Methodrequired | enum | BPay = 0, DirectDebit = 1. |
Response Examples
# 200 - OK
{
"ApplicationId": "c1bdac67-39a0-4835-8168-e99f44f01iu7"
}
Response Parameters
Parameter | Type | Description |
---|---|---|
ApplicationId | string | Unique application ID to be used as an application reference. |
POST Corporate Applicant & Company Account - AU
Definition: https://api.onpraemium.com/api/application
This endpoint creates a corporate applicant and account in the system.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AdviserId": 123456,
"Applicants": [
{
"ApplicantType": 1,
"CorporateDetails": {
"Name": "Smith & Smith",
"BusinessAddress": {
"Street": "123 Test St",
"Postcode": "3000",
"Suburb": "Melbourne",
"State": "VIC",
"CountryCode": "AUS"
},
"ContactIsSignatory": false,
"Contact": {
"Title": "Mr",
"FirstName": "John",
"LastName": "Smith",
"Phone": "012489235",
"Email": "j.smith@example.com"
},
"Signatories": [
{
"Title": "Mr",
"FirstName": "John",
"LastName": "Smith",
"Email": "j.smith@example.com",
"Capacity": 0,
"IsPoliticallyExposedPerson": false
}
],
"Identifications": [
{
"Type": 1,
"Value": "123456789"
}
]
}
}
],
"Accounts": [
{
"Name": "Test company",
"RegisteredName": "Test company",
"ShortName": "TC",
"AccountType": 13,
"PdsId": "AU5",
"Fees": [
{
"Id": "AU21871",
"Rate": 0,
"Unit": "Dollar"
}
],
"Models": [
{
"Code": "AU0001",
"Proportion": 50
},
{
"Code": "IN0001",
"Proportion": 50
}
],
"BankAccounts": [
{
"Bsb": "12012",
"AccountNumber": "6555555567",
"AccountName": "Jane Smith",
"Usages": [
"Income",
"CashContribution"
]
}
],
"Exclusions": [
{
"Code": "AU0002",
"Exchange": "ASX"
}
],
"InitialInvestment": {
"Cash": 132.12,
"Shares": 321.32,
"Method": 0
}
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AdviserIdrequired | integer | Adviser ID to create the application under. |
OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicantsrequired | array | Objects containing the applicant data. There must be at least one applicant for the request to succeed. The array of objects may contain a mix of Individual and Corporate applicants. |
Applicants.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicants.ApplicantType | enum | Corporate = 1. |
Applicants.CorporateDetails | object | Used for Corporate applicants. |
Applicants.CorporateDetails.Name | string | Name of the corporate applicant. |
Applicants.CorporateDetails.TradingName | string | Trading name of the corporate applicant. |
Applicants.CorporateDetails.Identifications | array | Array of TFN / ABN |
Applicants.CorporateDetails.Identifications.Type | enum | Tfn = 0, Abn = 1. |
Applicants.CorporateDetails.Identifications.Value | string | Identification value of applicant. |
Applicants.CorporateDetails.BusinessAddress | object | Business address. |
Applicants.CorporateDetails.BusinessAddress.Street | string | Address line 1. |
Applicants.CorporateDetails.BusinessAddress.Line2 | string | Address line 2. |
Applicants.CorporateDetails.BusinessAddress.Line3 | string | Address line 3. |
Applicants.CorporateDetails.BusinessAddress.Postcode | string | Postcode of address. |
Applicants.CorporateDetails.BusinessAddress.Suburb | string | Suburb of address. |
Applicants.CorporateDetails.BusinessAddress.CountryCode | string | Country code of address. |
Applicants.CorporateDetails.BusinessAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.CorporateDetails.MailingAddress | object | Mailing address. |
Applicants.CorporateDetails.MailingAddress.Street | string | Address line 1. |
Applicants.CorporateDetails.MailingAddress.Line2 | string | Address line 2. |
Applicants.CorporateDetails.MailingAddress.Line3 | string | Address line 3. |
Applicants.CorporateDetails.MailingAddress.Postcode | string | Postcode of address. |
Applicants.CorporateDetails.MailingAddress.Suburb | string | Suburb of address. |
Applicants.CorporateDetails.MailingAddress.CountryCode | string | Country code of address. |
Applicants.CorporateDetails.MailingAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.CorporateDetails.ContactIsSignatory | boolean | Whether the contact is a signatory on the account. |
Applicants.CorporateDetails.Contact | object | Primary contact. |
Applicants.CorporateDetails.Contact.Title | string | Title of contact. |
Applicants.CorporateDetails.Contact.FirstName | string | First name of contact. |
Applicants.CorporateDetails.Contact.LastName | string | Last name of contact. |
Applicants.CorporateDetails.Contact.Email | string | Email of contact. |
Applicants.CorporateDetails.Contact.Phone | string | Phone Number of contact. |
Applicants.CorporateDetails.Signatories | array | Corporate signatories. |
Applicants.CorporateDetails.Signatories.Title | string | Title of signatory. |
Applicants.CorporateDetails.Signatories.FirstName | string | First name of signatory. |
Applicants.CorporateDetails.Signatories.LastName | string | Last name of signatory. |
Applicants.CorporateDetails.Signatories.DateOfBirth | date-time | Date of birth of signatory. |
Applicants.CorporateDetails.Signatories.Email | string | Email address of signatory. |
Applicants.CorporateDetails.Signatories.IsPoliticallyExposedPerson | boolean | Whether applicant is politically exposed. |
Applicants.CorporateDetails.Signatories.PepDetails | string | If applicant is politically exposed, details must be supplied. |
Applicants.CorporateDetails.Signatories.Capacity | enum | Director = 0, SoleDirector = 1, CompanySecretary = 2. |
Applicants.CorporateDetails.Signatories.TaxNumber | string | Tax number of signatory. |
Applicants.CorporateDetails.Signatories.CountryOfBirth | string | Country of birth of signatory. |
Applicants.CorporateDetails.Signatories.Address | object | Address of signatory. |
Applicants.CorporateDetails.Signatories.Address.Street | string | Address line 1. |
Applicants.CorporateDetails.Signatories.Address.Line2 | string | Address line 2. |
Applicants.CorporateDetails.Signatories.Address.Line3 | string | Address line 3. |
Applicants.CorporateDetails.Signatories.Address.Postcode | string | Postcode of address. |
Applicants.CorporateDetails.Signatories.Address.Suburb | string | Suburb of address. |
Applicants.CorporateDetails.Signatories.Address.CountryCode | string | Country code of address. |
Applicants.CorporateDetails.Signatories.Address.IsRegistered | boolean | Whether address is registered. |
Accounts | array | Array of accounts to be opened with the application. Must be linked to an included applicant. |
Accounts.Name | string | Account name. |
Accounts.RegisteredName | string | Account registered name. |
Accounts.ShortName | string | Account short name. |
Accounts.AccountTyperequired | enum | Company = 13. |
Accounts.PdsId | string | PDS ID of account. |
Accounts.Fees | array | Account fees. |
Accounts.Fees.Id | string | Fee ID. |
Accounts.Fees.Rate | double | Fee rate. |
Accounts.Fees.Unit | string | Fee unit, dollars or percentage. |
Accounts.Models | array | Account models. |
Accounts.Models.Code | string | Model code. |
Accounts.Models.Proportion | double | Proportion of model. |
Accounts.BankAccounts | array | Bank accounts. |
Accounts.BankAccounts.Bsb | string | Bank account BSB. |
Accounts.BankAccounts.AccountNumber | string | Bank account number. |
Accounts.BankAccounts.AccountName | string | Bank account name. |
Accounts.BankAccounts.Usages | array | This allows you to define a regular cash addition or withdrawal from the SMA or SuperSMA. |
Accounts.Exclusions | array | Account exclusions. |
Accounts.Exclusions.Security | object | Security code of the exclusion. |
Accounts.Exclusions.Security.Code | string | Security code of the security. |
Accounts.Exclusions.Security.Exchange | string | Exchange code of the security. |
Accounts.InitialInvestment | object | Initial investment of account. |
Accounts.InitialInvestment.Cash | double | Select if the initial investment will include cash. |
Accounts.InitialInvestment.Shares | double | Select if the initial investment will include shares. |
Accounts.InitialInvestment.Methodrequired | enum | BPay = 0, DirectDebit = 1. |
Accounts.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Response Examples
# 200 - OK
{
"ApplicationId": "c1bdac67-39a0-4835-8168-e99f44f01iu7"
}
Response Parameters
Parameter | Type | Description |
---|---|---|
ApplicationId | string | Unique application ID to be used as an application reference. |
POST Individual Applicant & Trust Account - AU
Definition: https://api.onpraemium.com/api/application
This endpoint creates a individual applicant and a Trust account in the system.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AdviserId": 123456,
"Applicants": [
{
"ApplicantType": 0,
"IndividualDetails": {
"Title": "Mr",
"FirstName": "John",
"LastName": "Smith",
"Email": "j.smith@example.com",
"Phone": "012489235",
"PhoneOther": "012489235",
"Gender": 1,
"HomeAddress": {
"Street": "123 Test St",
"Postcode": "3000",
"Suburb": "Melbourne",
"State": "VIC",
"CountryCode": "AUS"
},
"MailingAddress": {
"Street": "123 Test St",
"Postcode": "3000",
"Suburb": "Melbourne",
"State": "VIC",
"CountryCode": "AUS"
},
"Identifications": [
{
"Type": 0,
"Value": "123456789"
},
{
"MissingReason": 1,
"MissingReasonText": "test"
}
],
"IsPoliticallyExposedPerson": true,
"PepDetails": "Senior politician"
}
}
],
"Accounts": [
{
"Name": "Miss Jane Smith",
"RegisteredName": "Miss Jane Smith",
"ShortName": "Jane",
"AccountType": 14,
"PdsId": "AU5",
"Fees": [
{
"Id": "AU21871",
"Rate": 0,
"Unit": "Dollar"
}
],
"Models": [
{
"Code": "AU0001",
"Proportion": 50
},
{
"Code": "IN0001",
"Proportion": 50
}
],
"BankAccounts": [
{
"Bsb": "12012",
"AccountNumber": "6555555567",
"AccountName": "Jane Smith",
"Usages": [
"Income",
"CashContribution"
]
}
],
"Exclusions": [
{
"Code": "AU0002",
"Exchange": "ASX"
}
],
"InitialInvestment": {
"Cash": 132.12,
"Shares": 321.32,
"Method": 0
},
"TrustOrFundDetails": {
"Name": "Fund name",
"Abn": "12345678",
"Tfn": "12345678"
},
"TargetAllocation": {
"Fees": [
{
"Code": "AB0101",
"Percentage": 100
}
],
"Income": []
}
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AdviserIdrequired | integer | Adviser ID to create the application under. |
OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicantsrequired | array | Objects containing the applicant data. There must be at least one applicant for the request to succeed. The array of objects may contain a mix of Individual and Corporate applicants. |
Applicants.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicants.ApplicantType | enum | Individual = 0. |
Applicants.IndividualDetails | object | Used for Individual applicants. |
Applicants.IndividualDetails.Title | string | Title: Mr, Mrs, Ms, Miss, Doctor, Lady, Prof and Sir. |
Applicants.IndividualDetails.FirstName | string | First name of individual. |
Applicants.IndividualDetails.LastName | string | Last name of individual. |
Applicants.IndividualDetails.DateOfBirth | date-time | Date of birth of the individual. |
Applicants.IndividualDetails.Email | string | Email address of the individual. |
Applicants.IndividualDetails.Phone | string | Primary contact number of the individual. |
Applicants.IndividualDetails.PhoneOther | string | Other phone of the individual. |
Applicants.IndividualDetails.Genderrequired | enum | Male = 1, Female = 2. |
Applicants.IndividualDetails.UserName | string | User Name of individual applicant. |
Applicants.IndividualDetails.UserId | string | User ID of individual applicant. |
Applicants.IndividualDetails.IsPoliticallyExposedPerson | boolean | Whether applicant is politically exposed. |
Applicants.IndividualDetails.PepDetails | string | If applicant is politically exposed, details must be supplied. |
Applicants.IndividualDetails.TaxResidenceCountryCode | string | Tax residence country code. |
Applicants.IndividualDetails.CitizenshipCountryCode | string | Citizenship country code. |
Applicants.IndividualDetails.Identifications | array | Array of TFN / ABN. |
Applicants.IndividualDetails.Identifications.Type | enum | Tfn = 0, Tin = 2. |
Applicants.IndividualDetails.Identifications.Value | string | Identification value of applicant. |
Applicants.IndividualDetails.Identifications.MissingReason | enum | CountryDoesntIssue = 1, DontNeedOne = 2, Other = 99. |
Applicants.IndividualDetails.Identifications.MissingReasonText | string | Reason identification of applicant is missing. |
Applicants.IndividualDetails.HomeAddress | object | Home address of individual applicant. |
Applicants.IndividualDetails.HomeAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.HomeAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.HomeAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.HomeAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.HomeAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.HomeAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.HomeAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.IndividualDetails.MailingAddress | object | Mailing address of individual applicant. |
Applicants.IndividualDetails.MailingAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.MailingAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.MailingAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.MailingAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.MailingAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.MailingAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.MailingAddress.IsRegistered | boolean | Whether address is registered. |
Accounts | array | Array of accounts to be opened with the application. Must be linked to an included applicant. |
Accounts.Name | string | Account name. |
Accounts.RegisteredName | string | Account registered name. |
Accounts.ShortName | string | Account short name. |
Accounts.AccountTyperequired | enum | Trust = 15. |
Accounts.PdsId | string | PDS ID of account. |
Accounts.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Accounts.Fees | array | Account fees. |
Accounts.Fees.Id | string | Fee ID. |
Accounts.Fees.Rate | double | Fee rate. |
Accounts.Fees.Unit | string | Fee unit, dollars or percentage. |
Accounts.Models | array | Account models. |
Accounts.Models.Code | string | Model code. |
Accounts.Models.Proportion | double | Proportion of model. |
Accounts.BankAccounts | array | Bank accounts. |
Accounts.BankAccounts.Bsb | string | Bank account BSB. |
Accounts.BankAccounts.AccountNumber | string | Bank account number. |
Accounts.BankAccounts.AccountName | string | Bank account name. |
Accounts.BankAccounts.Usages | array | This allows you to define a regular cash addition or withdrawal from the SMA or SuperSMA. |
Accounts.Exclusions | array | Account exclusions. |
Accounts.Exclusions.Security | object | Security code of the exclusion. |
Accounts.Exclusions.Security.Code | string | Security code of the security. |
Accounts.Exclusions.Security.Exchange | string | Exchange code of the security. |
Accounts.InitialInvestment | object | Initial investment of account. |
Accounts.InitialInvestment.Cash | double | Select if the initial investment will include cash. |
Accounts.InitialInvestment.Shares | double | Select if the initial investment will include shares. |
Accounts.InitialInvestment.Methodrequired | enum | BPay = 0, DirectDebit = 1. |
Accounts.TrustOrFundDetails | object | Trust or Fund details. |
Accounts.TrustOrFundDetails.Name | string | Name of the Trust or Fund. |
Accounts.TrustOrFundDetails.Abn | string | ABN of the Super Fund (rather than the corporate trustee) for corporate applicants. |
Accounts.TrustOrFundDetails.Tfn | string | TFN for an individual trustee. |
Accounts.TargetAllocation | object | Target allocation. |
Accounts.TargetAllocation.Fees | array | Target allocation fees. |
Accounts.TargetAllocation.Fees.Code | string | Target allocation fees code. |
Accounts.TargetAllocation.Fees.Percentage | double | Target allocation fees percentage. |
Accounts.TargetAllocation.Income | array | Target allocation income. |
Accounts.TargetAllocation.Income.Code | string | Target allocation income code. |
Accounts.TargetAllocation.Income.Percentage | double | Target allocation income percentage. |
Response Examples
# 200 - OK
{
"ApplicationId": "c1bdac67-39a0-4835-8168-e99f44f01iu7"
}
Response Parameters
Parameter | Type | Description |
---|---|---|
ApplicationId | string | Unique application ID to be used as an application reference. |
POST Corporate Applicant & Company Account - AU
Definition: https://api.onpraemium.com/api/application
This endpoint creates a corporate applicant and company account in the system.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AdviserId": 123456,
"Applicants": [
{
"ApplicantType": 1,
"CorporateDetails": {
"Name": "Smith & Smith",
"BusinessAddress": {
"Street": "123 Test St",
"Postcode": "3000",
"Suburb": "Melbourne",
"State": "VIC",
"CountryCode": "AUS"
},
"ContactIsSignatory": false,
"Contact": {
"Title": "Mr",
"FirstName": "John",
"LastName": "Smith",
"Phone": "012489235",
"Email": "j.smith@example.com"
},
"Signatories": [
{
"Title": "Mr",
"FirstName": "John",
"LastName": "Smith",
"Email": "j.smith@example.com",
"Capacity": 0,
"IsPoliticallyExposedPerson": false
}
],
"Identifications": [
{
"Type": 1,
"Value": "123456789"
}
]
}
}
],
"Accounts": [
{
"Name": "Test company",
"RegisteredName": "Test company",
"ShortName": "TC",
"AccountType": 13,
"PdsId": "AU5",
"Fees": [
{
"Id": "AU21871",
"Rate": 0,
"Unit": "Dollar"
}
],
"Models": [
{
"Code": "AU0001",
"Proportion": 50
},
{
"Code": "IN0001",
"Proportion": 50
}
],
"BankAccounts": [
{
"Bsb": "12012",
"AccountNumber": "6555555567",
"AccountName": "Jane Smith",
"Usages": [
"Income",
"CashContribution"
]
}
],
"Exclusions": [
{
"Code": "AU0002",
"Exchange": "ASX"
}
],
"InitialInvestment": {
"Cash": 132.12,
"Shares": 321.32,
"Method": 0
},
"TrustOrFundDetails": {
"Name": "Fund name",
"Abn": "12345678",
"Tfn": "12345678"
},
"TargetAllocation": {
"Fees": [
{
"Code": "AB0101",
"Percentage": 100
}
],
"Income": []
}
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AdviserIdrequired | integer | Adviser ID to create the application under. |
OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicantsrequired | array | Objects containing the applicant data. There must be at least one applicant for the request to succeed. The array of objects may contain a mix of Individual and Corporate applicants. |
Applicants.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicants.ApplicantType | enum | Corporate = 1. |
Applicants.CorporateDetails | object | Used for Corporate applicants. |
Applicants.CorporateDetails.Name | string | Name of the corporate applicant. |
Applicants.CorporateDetails.TradingName | string | Trading name of the corporate applicant. |
Applicants.CorporateDetails.Identifications | array | Array of TFN / ABN |
Applicants.CorporateDetails.Identifications.Type | enum | Tfn = 0, Abn = 1. |
Applicants.CorporateDetails.Identifications.Value | string | Identification value of applicant. |
Applicants.CorporateDetails.BusinessAddress | object | Business address. |
Applicants.CorporateDetails.BusinessAddress.Street | string | Address line 1. |
Applicants.CorporateDetails.BusinessAddress.Line2 | string | Address line 2. |
Applicants.CorporateDetails.BusinessAddress.Line3 | string | Address line 3. |
Applicants.CorporateDetails.BusinessAddress.Postcode | string | Postcode of address. |
Applicants.CorporateDetails.BusinessAddress.Suburb | string | Suburb of address. |
Applicants.CorporateDetails.BusinessAddress.CountryCode | string | Country code of address. |
Applicants.CorporateDetails.BusinessAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.CorporateDetails.MailingAddress | object | Mailing address. |
Applicants.CorporateDetails.MailingAddress.Street | string | Address line 1. |
Applicants.CorporateDetails.MailingAddress.Line2 | string | Address line 2. |
Applicants.CorporateDetails.MailingAddress.Line3 | string | Address line 3. |
Applicants.CorporateDetails.MailingAddress.Postcode | string | Postcode of address. |
Applicants.CorporateDetails.MailingAddress.Suburb | string | Suburb of address. |
Applicants.CorporateDetails.MailingAddress.CountryCode | string | Country code of address. |
Applicants.CorporateDetails.MailingAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.CorporateDetails.ContactIsSignatory | boolean | Whether the contact is a signatory on the account. |
Applicants.CorporateDetails.Contact | object | Primary contact. |
Applicants.CorporateDetails.Contact.Title | string | Title of contact. |
Applicants.CorporateDetails.Contact.FirstName | string | First name of contact. |
Applicants.CorporateDetails.Contact.LastName | string | Last name of contact. |
Applicants.CorporateDetails.Contact.Email | string | Email of contact. |
Applicants.CorporateDetails.Contact.Phone | string | Phone Number of contact. |
Applicants.CorporateDetails.Signatories | array | Corporate signatories. |
Applicants.CorporateDetails.Signatories.Title | string | Title of signatory. |
Applicants.CorporateDetails.Signatories.FirstName | string | First name of signatory. |
Applicants.CorporateDetails.Signatories.LastName | string | Last name of signatory. |
Applicants.CorporateDetails.Signatories.DateOfBirth | date-time | Date of birth of signatory. |
Applicants.CorporateDetails.Signatories.Email | string | Email address of signatory. |
Applicants.CorporateDetails.Signatories.IsPoliticallyExposedPerson | boolean | Whether applicant is politically exposed. |
Applicants.CorporateDetails.Signatories.PepDetails | string | If applicant is politically exposed, details must be supplied. |
Applicants.CorporateDetails.Signatories.Capacity | enum | Director = 0, SoleDirector = 1, CompanySecretary = 2. |
Applicants.CorporateDetails.Signatories.TaxNumber | string | Tax number of signatory. |
Applicants.CorporateDetails.Signatories.CountryOfBirth | string | Country of birth of signatory. |
Applicants.CorporateDetails.Signatories.Address | object | Address of signatory. |
Applicants.CorporateDetails.Signatories.Address.Street | string | Address line 1. |
Applicants.CorporateDetails.Signatories.Address.Line2 | string | Address line 2. |
Applicants.CorporateDetails.Signatories.Address.Line3 | string | Address line 3. |
Applicants.CorporateDetails.Signatories.Address.Postcode | string | Postcode of address. |
Applicants.CorporateDetails.Signatories.Address.Suburb | string | Suburb of address. |
Applicants.CorporateDetails.Signatories.Address.CountryCode | string | Country code of address. |
Applicants.CorporateDetails.Signatories.Address.IsRegistered | boolean | Whether address is registered. |
Accounts | array | Array of accounts to be opened with the application. Must be linked to an included applicant. |
Accounts.Name | string | Account name. |
Accounts.RegisteredName | string | Account registered name. |
Accounts.ShortName | string | Account short name. |
Accounts.AccountTyperequired | enum | Trust = 15. |
Accounts.PdsId | string | PDS ID of account. |
Accounts.Fees | array | Account fees. |
Accounts.Fees.Id | string | Fee ID. |
Accounts.Fees.Rate | double | Fee rate. |
Accounts.Fees.Unit | string | Fee unit, dollars or percentage. |
Accounts.Models | array | Account models. |
Accounts.Models.Code | string | Model code. |
Accounts.Models.Proportion | double | Proportion of model. |
Accounts.BankAccounts | array | Bank accounts. |
Accounts.BankAccounts.Bsb | string | Bank account BSB. |
Accounts.BankAccounts.AccountNumber | string | Bank account number. |
Accounts.BankAccounts.AccountName | string | Bank account name. |
Accounts.BankAccounts.Usages | array | This allows you to define a regular cash addition or withdrawal from the SMA or SuperSMA. |
Accounts.Exclusions | array | Account exclusions. |
Accounts.Exclusions.Security | object | Security code of the exclusion. |
Accounts.Exclusions.Security.Code | string | Security code of the security. |
Accounts.Exclusions.Security.Exchange | string | Exchange code of the security. |
Accounts.InitialInvestment | object | Initial investment of account. |
Accounts.InitialInvestment.Cash | double | Select if the initial investment will include cash. |
Accounts.InitialInvestment.Shares | double | Select if the initial investment will include shares. |
Accounts.InitialInvestment.Methodrequired | enum | BPay = 0, DirectDebit = 1. |
Accounts.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Accounts.TrustOrFundDetails | object | Trust or Fund details. |
Accounts.TrustOrFundDetails.Name | string | Name of the Trust or Fund. |
Accounts.TrustOrFundDetails.Abn | string | ABN of the Super Fund (rather than the corporate trustee) for corporate applicants. |
Accounts.TrustOrFundDetails.Tfn | string | TFN for an individual trustee. |
Accounts.TargetAllocation | object | Target allocation. |
Accounts.TargetAllocation.Fees | array | Target allocation fees. |
Accounts.TargetAllocation.Fees.Code | string | Target allocation fees code. |
Accounts.TargetAllocation.Fees.Percentage | double | Target allocation fees percentage. |
Accounts.TargetAllocation.Income | array | Target allocation income. |
Accounts.TargetAllocation.Income.Code | string | Target allocation income code. |
Accounts.TargetAllocation.Income.Percentage | double | Target allocation income percentage. |
Response Examples
# 200 - OK
{
"ApplicationId": "c1bdac67-39a0-4835-8168-e99f44f01iu7"
}
Response Parameters
Parameter | Type | Description |
---|---|---|
ApplicationId | string | Unique application ID to be used as an application reference. |
POST Individual Applicant & SuperSMA Accumulation Account - AU
Definition: https://api.onpraemium.com/api/application
This endpoint creates a individual applicant and a SuperSMA Accumulation account in the system.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AdviserId": 123456,
"Applicants": [
{
"ApplicantType": 0,
"IndividualDetails": {
"Title": "Mr",
"FirstName": "John",
"LastName": "Smith",
"Email": "j.smith@example.com",
"Phone": "012489235",
"PhoneOther": "012489235",
"Gender": 1,
"HomeAddress": {
"Street": "123 Test St",
"Postcode": "3000",
"Suburb": "Melbourne",
"State": "VIC",
"CountryCode": "AUS"
},
"MailingAddress": {
"Street": "123 Test St",
"Postcode": "3000",
"Suburb": "Melbourne",
"State": "VIC",
"CountryCode": "AUS"
},
"Identifications": [
{
"Type": 0,
"Value": "123456789"
},
{
"MissingReason": 1,
"MissingReasonText": "test"
}
],
"IsPoliticallyExposedPerson": true,
"PepDetails": "Senior politician"
}
}
],
"Accounts": [
{
"Name": "Miss Jane Smith",
"RegisteredName": "Miss Jane Smith",
"ShortName": "Jane",
"AccountType": 16,
"PdsId": "AU5",
"Fees": [
{
"Id": "AU21871",
"Rate": 0,
"Unit": "Dollar"
}
],
"Models": [
{
"Code": "AU0001",
"Proportion": 50
},
{
"Code": "IN0001",
"Proportion": 50
}
],
"BankAccounts": [
{
"Bsb": "12012",
"AccountNumber": "6555555567",
"AccountName": "Jane Smith",
"Usages": [
"Income",
"CashContribution"
]
}
],
"Exclusions": [
{
"Code": "AU0002",
"Exchange": "ASX"
}
],
"TargetAllocation": {
"Fees": [
{
"Code": "AB0101",
"Percentage": 100
}
],
"Income": []
},
"InitialInvestmentSuper": {
"ContributionSources": [
{
"MemberNumber": "test member number",
"SourceOfContribution": {
"ProductName": "test product name",
"Usi": "test usi"
},
"EntireBalance": true,
"ExpectedAmount": 35234.43543
}
],
"Transfers": [
{
"AccountId": "AU123456",
"TransferMethod": 1,
"Amount": 35234.43543
}
],
"OtherContributions": [
{
"ContributionType": 21,
"ExpectedAmount": 35234.43543
}
]
},
"Beneficiaries": [
{
"FullName": "Mr. John Smith",
"Relationship": 2,
"DateOfBirth": "2000-01-01",
"Proportion": 100.0,
"Address": {
"Street": "123 Test St",
"Line2": "",
"Line3": "",
"Postcode": "3000",
"Suburb": "Melbourne",
"State": "VIC",
"CountryCode": "AUS"
},
}
],
"IsBindingNomination": false,
"IsEmployerContributing": false
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AdviserIdrequired | integer | Adviser ID to create the application under. |
OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicantsrequired | array | Objects containing the applicant data. There must be at least one applicant for the request to succeed. The array of objects may contain a mix of Individual and Corporate applicants. |
Applicants.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicants.ApplicantType | enum | Individual = 0. |
Applicants.IndividualDetails | object | Used for Individual applicants. |
Applicants.IndividualDetails.Title | string | Title: Mr, Mrs, Ms, Miss, Doctor, Lady, Prof and Sir. |
Applicants.IndividualDetails.FirstName | string | First name of individual. |
Applicants.IndividualDetails.LastName | string | Last name of individual. |
Applicants.IndividualDetails.DateOfBirth | date-time | Date of birth of the individual. |
Applicants.IndividualDetails.Email | string | Email address of the individual. |
Applicants.IndividualDetails.Phone | string | Primary contact number of the individual. |
Applicants.IndividualDetails.PhoneOther | string | Other phone of the individual. |
Applicants.IndividualDetails.Genderrequired | enum | Male = 1, Female = 2. |
Applicants.IndividualDetails.UserName | string | User Name of individual applicant. |
Applicants.IndividualDetails.UserId | string | User ID of individual applicant. |
Applicants.IndividualDetails.IsPoliticallyExposedPerson | boolean | Whether applicant is politically exposed. |
Applicants.IndividualDetails.PepDetails | string | If applicant is politically exposed, details must be supplied. |
Applicants.IndividualDetails.TaxResidenceCountryCode | string | Tax residence country code. |
Applicants.IndividualDetails.CitizenshipCountryCode | string | Citizenship country code. |
Applicants.IndividualDetails.Identifications | array | Array of TFN / ABN. |
Applicants.IndividualDetails.Identifications.Type | enum | Tfn = 0, Tin = 2. |
Applicants.IndividualDetails.Identifications.Value | string | Identification value of applicant. |
Applicants.IndividualDetails.Identifications.MissingReason | enum | CountryDoesntIssue = 1, DontNeedOne = 2, Other = 99. |
Applicants.IndividualDetails.Identifications.MissingReasonText | string | Reason identification of applicant is missing. |
Applicants.IndividualDetails.HomeAddress | object | Home address of individual applicant. |
Applicants.IndividualDetails.HomeAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.HomeAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.HomeAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.HomeAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.HomeAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.HomeAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.HomeAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.IndividualDetails.MailingAddress | object | Mailing address of individual applicant. |
Applicants.IndividualDetails.MailingAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.MailingAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.MailingAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.MailingAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.MailingAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.MailingAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.MailingAddress.IsRegistered | boolean | Whether address is registered. |
Accounts | array | Array of accounts to be opened with the application. Must be linked to an included applicant. |
Accounts.Name | string | Account name. |
Accounts.RegisteredName | string | Account registered name. |
Accounts.ShortName | string | Account short name. |
Accounts.AccountTyperequired | enum | SuperSmaAccumulation = 16. |
Accounts.PdsId | string | PDS ID of account. |
Accounts.Fees | array | Account fees. |
Accounts.Fees.Id | string | Fee ID. |
Accounts.Fees.Rate | double | Fee rate. |
Accounts.Fees.Unit | string | Fee unit, dollars or percentage. |
Accounts.Models | array | Account models. |
Accounts.Models.Coderequired | string | Model code. |
Accounts.Models.Proportion | double | Proportion of model. |
Accounts.BankAccounts | array | Bank accounts. |
Accounts.BankAccounts.Bsb | string | Bank account BSB. |
Accounts.BankAccounts.AccountNumber | string | Bank account number. |
Accounts.BankAccounts.AccountName | string | Bank account name. |
Accounts.BankAccounts.Usages | array | This allows you to define a regular cash addition or withdrawal from the SMA or SuperSMA. |
Accounts.Exclusions | array | Account exclusions. |
Accounts.Exclusions.Security | object | Security code of the exclusion. |
Accounts.Exclusions.Security.Coderequired | string | Security code of the security. |
Accounts.Exclusions.Security.Exchangerequired | string | Exchange code of the security. |
Accounts.TargetAllocation | object | Target allocation. |
Accounts.TargetAllocation.Fees | array | Target allocation fees. |
Accounts.TargetAllocation.Fees.Code | string | Target allocation fees code. |
Accounts.TargetAllocation.Fees.Percentage | double | Target allocation fees percentage. |
Accounts.TargetAllocation.Income | array | Target allocation income. |
Accounts.TargetAllocation.Income.Code | string | Target allocation income code. |
Accounts.TargetAllocation.Income.Percentage | double | Target allocation income percentage. |
Accounts.InitialInvestmentSuper | object | Initial investment for super. |
Accounts.InitialInvestmentSuper.ContributionSources | array | Initial investment super contribution sources. |
Accounts.InitialInvestmentSuper.ContributionSources.MemberNumber | string | Contribution sources member number. |
Accounts.InitialInvestmentSuper.ContributionSources.SourceOfContribution | object | Source of contribution. |
Accounts.InitialInvestmentSuper.ContributionSources.SourceOfContribution.ProductName | string | Source of contribution product name. |
Accounts.InitialInvestmentSuper.ContributionSources.SourceOfContribution.Usi | string | Source of contribution USI. |
Accounts.InitialInvestmentSuper.ContributionSources.EntireBalance | boolean | Entire balance. |
Accounts.InitialInvestmentSuper.ContributionSources.ExpectedAmount | double | Expected amount. |
Accounts.InitialInvestmentSuper.Transfers | array | Initial investment super transfers. |
Accounts.InitialInvestmentSuper.Transfers.AccountId | string | Transfer account ID. |
Accounts.InitialInvestmentSuper.Transfers.TransferMethod | enum | WholeAmountWithClose = 0, WholeAmountKeepOpen = 1, SpecifiedAmount = 2 - whether the source account will be kept open. |
Accounts.InitialInvestmentSuper.Transfers.Amount | double | Transfer amount. |
Accounts.InitialInvestmentSuper.OtherContributions | array | Other contributions. |
Accounts.InitialInvestmentSuper.OtherContributions.ContributionType | enum | NonConcessional_Personal = 21, NonConcessional_Spouse = 22, NonConcessional_Child = 24, Downsizer = 43. |
Accounts.InitialInvestmentSuper.OtherContributions.ExpectedAmount | double | Other contributions expected amount. |
Accounts.InitialInvestmentSuper.AccumContribution | object | Accumulation contribution. |
Accounts.InitialInvestmentSuper.AccumContribution.ContributionType | enum | NonConcessional_Personal = 21, NonConcessional_Spouse = 22. |
Accounts.InitialInvestmentSuper.AccumContribution.ExpectedAmount | double | Accumulation contribution expected amount. |
Accounts.Beneficiaries | array | Beneficiaries. |
Accounts.Beneficiaries.Proportion | double | The portion of the benefit that should be paid to the beneficiary. These must add up to 100%. |
Accounts.Beneficiaries.Address | object | Address of the beneficiary. |
Accounts.Beneficiaries.Address.Streetrequired | string | Address street of the beneficiary. |
Accounts.Beneficiaries.Address.Line2 | string | Address Line 2 of the beneficiary. |
Accounts.Beneficiaries.Address.Line3 | string | Address Line 3 of the beneficiary. |
Accounts.Beneficiaries.Address.Postcode | string | Postcode of the beneficiary. |
Accounts.Beneficiaries.Address.Suburb | string | Suburb of the beneficiary. |
Accounts.Beneficiaries.Address.CountryCode | string | Country code of the beneficiary. |
Accounts.Beneficiaries.Address.IsRegistered | boolean | Address is registered. |
Accounts.Beneficiaries.FullName | string | Full name of beneficiary. |
Accounts.Beneficiaries.Relationship | enum | Spouse = 1, Child = 2, Other = 3, PersonalLegalRepresentative = 8. |
Accounts.Beneficiaries.DateOfBirth | date-time | Date of birth of beneficiary. |
Accounts.IsBindingNomination | boolean | If nomination is binding. |
Accounts.IsEmployerContributing | boolean | If employer is contributing. |
Response Examples
# 200 - OK
{
"ApplicationId": "c1bdac67-39a0-4835-8168-e99f44f01iu7"
}
Response Parameters
Parameter | Type | Description |
---|---|---|
ApplicationId | string | Unique application ID to be used as an application reference. |
POST Individual Applicant & SuperSMA Account-Based-Pensions Account - AU
Definition: https://api.onpraemium.com/api/application
This endpoint creates a individual applicant and a SuperSMA Pension account in the system.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AdviserId": 123456,
"Applicants": [
{
"ApplicantType": 0,
"IndividualDetails": {
"Title": "Mr",
"FirstName": "John",
"LastName": "Smith",
"Email": "j.smith@example.com",
"Phone": "012489235",
"PhoneOther": "012489235",
"Gender": 1,
"HomeAddress": {
"Street": "123 Test St",
"Postcode": "3000",
"Suburb": "Melbourne",
"State": "VIC",
"CountryCode": "AUS"
},
"MailingAddress": {
"Street": "123 Test St",
"Postcode": "3000",
"Suburb": "Melbourne",
"State": "VIC",
"CountryCode": "AUS"
},
"Identifications": [
{
"Type": 0,
"Value": "123456789"
},
{
"MissingReason": 1,
"MissingReasonText": "test"
}
],
"IsPoliticallyExposedPerson": true,
"PepDetails": "Senior politician"
}
}
],
"Accounts": [
{
"Name": "Miss Jane Smith",
"RegisteredName": "Miss Jane Smith",
"ShortName": "Jane",
"AccountType": 16,
"PdsId": "AU5",
"Fees": [
{
"Id": "AU21871",
"Rate": 0,
"Unit": "Dollar"
}
],
"Models": [
{
"Code": "AU0001",
"Proportion": 50
},
{
"Code": "IN0001",
"Proportion": 50
}
],
"BankAccounts": [
{
"Bsb": "12012",
"AccountNumber": "6555555567",
"AccountName": "Jane Smith",
"Usages": [
"Income",
"CashContribution"
]
}
],
"Exclusions": [
{
"Code": "AU0002",
"Exchange": "ASX"
}
],
"InitialInvestmentSuper": {
"ContributionSources": [
{
"MemberNumber": "test member number",
"SourceOfContribution": {
"ProductName": "test product name",
"Usi": "test usi"
},
"EntireBalance": true,
"ExpectedAmount": 35234.43543
}
],
"Transfers": [
{
"AccountId": "AU123456",
"TransferMethod": 1,
"Amount": 35234.43543
}
],
"OtherContributions": [
{
"ContributionType": 21,
"ExpectedAmount": 35234.43543
}
]
},
"PensionPayment": {
"Type": 0,
"Amount": 100.0,
"CommencementDate": "2021-01",
"Frequency": 0
},
"TargetAllocation": {
"Fees": [
{
"Code": "AB0101",
"Percentage": 100
}
],
"Income": [],
"Payments": []
},
"ReversionaryBeneficiary": {
"FullName": "Mr. John Smith",
"Sex": 1,
"Relationship": 2,
"DateOfBirth": "2000-01-01"
},
"Beneficiaries": [],
"IsBindingNomination": false
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AdviserIdrequired | integer | Adviser ID to create the application under. |
OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicantsrequired | array | Objects containing the applicant data. There must be at least one applicant for the request to succeed. The array of objects may contain a mix of Individual and Corporate applicants. |
Applicants.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicants.ApplicantType | enum | Individual = 0. |
Applicants.IndividualDetails | object | Used for Individual applicants. |
Applicants.IndividualDetails.Title | string | Title: Mr, Mrs, Ms, Miss, Doctor, Lady, Prof and Sir. |
Applicants.IndividualDetails.FirstName | string | First name of individual. |
Applicants.IndividualDetails.LastName | string | Last name of individual. |
Applicants.IndividualDetails.DateOfBirth | date-time | Date of birth of the individual. |
Applicants.IndividualDetails.Email | string | Email address of the individual. |
Applicants.IndividualDetails.Phone | string | Primary contact number of the individual. |
Applicants.IndividualDetails.PhoneOther | string | Other phone of the individual. |
Applicants.IndividualDetails.Genderrequired | enum | Male = 1, Female = 2. |
Applicants.IndividualDetails.UserName | string | User Name of individual applicant. |
Applicants.IndividualDetails.UserId | string | User ID of individual applicant. |
Applicants.IndividualDetails.IsPoliticallyExposedPerson | boolean | Whether applicant is politically exposed. |
Applicants.IndividualDetails.PepDetails | string | If applicant is politically exposed, details must be supplied. |
Applicants.IndividualDetails.TaxResidenceCountryCode | string | Tax residence country code. |
Applicants.IndividualDetails.CitizenshipCountryCode | string | Citizenship country code. |
Applicants.IndividualDetails.Identifications | array | Array of TFN / ABN. |
Applicants.IndividualDetails.Identifications.Type | enum | Tfn = 0, Tin = 2. |
Applicants.IndividualDetails.Identifications.Value | string | Identification value of applicant. |
Applicants.IndividualDetails.Identifications.MissingReason | enum | CountryDoesntIssue = 1, DontNeedOne = 2, Other = 99. |
Applicants.IndividualDetails.Identifications.MissingReasonText | string | Reason identification of applicant is missing. |
Applicants.IndividualDetails.HomeAddress | object | Home address of individual applicant. |
Applicants.IndividualDetails.HomeAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.HomeAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.HomeAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.HomeAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.HomeAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.HomeAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.HomeAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.IndividualDetails.MailingAddress | object | Mailing address of individual applicant. |
Applicants.IndividualDetails.MailingAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.MailingAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.MailingAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.MailingAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.MailingAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.MailingAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.MailingAddress.IsRegistered | boolean | Whether address is registered. |
Accounts | array | Array of accounts to be opened with the application. Must be linked to an included applicant. |
Accounts.Name | string | Account name. |
Accounts.RegisteredName | string | Account registered name. |
Accounts.ShortName | string | Account short name. |
Accounts.AccountTyperequired | enum | SuperSmaPensionAbp = 17. |
Accounts.PdsId | string | PDS ID of account. |
Accounts.Fees | array | Account fees. |
Accounts.Fees.Id | string | Fee ID. |
Accounts.Fees.Rate | double | Fee rate. |
Accounts.Fees.Unit | string | Fee unit, dollars or percentage. |
Accounts.Models | array | Account models. |
Accounts.Models.Coderequired | string | Model code. |
Accounts.Models.Proportion | double | Proportion of model. |
Accounts.BankAccounts | array | Bank accounts. |
Accounts.BankAccounts.Bsb | string | Bank account BSB. |
Accounts.BankAccounts.AccountNumber | string | Bank account number. |
Accounts.BankAccounts.AccountName | string | Bank account name. |
Accounts.BankAccounts.Usages | array | This allows you to define a regular cash addition or withdrawal from the SMA or SuperSMA. |
Accounts.Exclusions | array | Account exclusions. |
Accounts.Exclusions.Security | object | Security code of the exclusion. |
Accounts.Exclusions.Security.Coderequired | string | Security code of the security. |
Accounts.Exclusions.Security.Exchangerequired | string | Exchange code of the security. |
Accounts.TargetAllocation | object | Target allocation. |
Accounts.TargetAllocation.Fees | array | Target allocation fees. |
Accounts.TargetAllocation.Fees.Code | string | Target allocation fees code. |
Accounts.TargetAllocation.Fees.Percentage | double | Target allocation fees percentage. |
Accounts.TargetAllocation.Income | array | Target allocation income. |
Accounts.TargetAllocation.Income.Code | string | Target allocation income code. |
Accounts.TargetAllocation.Income.Percentage | double | Target allocation income percentage. |
Accounts.TargetAllocation.Payments | array | Target allocation payment. |
Accounts.TargetAllocation.Payments.Code | string | Target allocation payment code. |
Accounts.TargetAllocation.Payments.Percentage | double | Target allocation payment percentage. |
Accounts.PensionPayment | object | Pension Payment. |
Accounts.PensionPayment.Type | enum | Specified = 0, Minimum = 1. |
Accounts.PensionPayment.Amount | double | Pension payment amount. |
Accounts.PensionPayment.Frequency | enum | Monthly = 0, Quarterly = 1, SemiAnnually = 2, Annually = 3. |
Accounts.PensionPayment.CommencementDate | date-time | Pension payment commencement date. |
Accounts.InitialInvestmentSuper | object | Initial investment for super. |
Accounts.InitialInvestmentSuper.ContributionSources | array | Initial investment super contribution sources. |
Accounts.InitialInvestmentSuper.ContributionSources.MemberNumber | string | Contribution sources member number. |
Accounts.InitialInvestmentSuper.ContributionSources.SourceOfContribution | object | Source of contribution. |
Accounts.InitialInvestmentSuper.ContributionSources.SourceOfContribution.ProductName | string | Source of contribution product name. |
Accounts.InitialInvestmentSuper.ContributionSources.SourceOfContribution.Usi | string | Source of contribution USI. |
Accounts.InitialInvestmentSuper.ContributionSources.EntireBalance | boolean | Entire balance. |
Accounts.InitialInvestmentSuper.ContributionSources.ExpectedAmount | double | Expected amount. |
Accounts.InitialInvestmentSuper.Transfers | array | Initial investment super transfers. |
Accounts.InitialInvestmentSuper.Transfers.AccountId | string | Transfer account ID. |
Accounts.InitialInvestmentSuper.Transfers.TransferMethod | enum | WholeAmountWithClose = 0, WholeAmountKeepOpen = 1, SpecifiedAmount = 2 - whether the source account will be kept open. |
Accounts.InitialInvestmentSuper.Transfers.Amount | double | Transfer amount. |
Accounts.InitialInvestmentSuper.OtherContributions | array | Other contributions. |
Accounts.InitialInvestmentSuper.OtherContributions.ContributionType | enum | NonConcessional_Personal = 21, NonConcessional_Spouse = 22, NonConcessional_Child = 24, Downsizer = 43. |
Accounts.InitialInvestmentSuper.OtherContributions.ExpectedAmount | double | Other contributions expected amount. |
Accounts.ReversionaryBeneficiary | object | Reversionary beneficiary. |
Accounts.ReversionaryBeneficiary.Sex | enum | Male = 1, Female = 2. |
Accounts.ReversionaryBeneficiary.FullName | string | Full name of beneficiary. |
Accounts.ReversionaryBeneficiary.Relationship | enum | Spouse = 1, Child = 2, Other = 3. |
Accounts.ReversionaryBeneficiary.DateOfBirth | date-time | Date of birth of beneficiary. |
Accounts.Beneficiaries | array | Beneficiaries. |
Accounts.Beneficiaries.Proportion | double | The portion of the benefit that should be paid to the beneficiary. These must add up to 100%. |
Accounts.Beneficiaries.Address | object | Address of the beneficiary. |
Accounts.Beneficiaries.Address.Streetrequired | string | Address street of the beneficiary. |
Accounts.Beneficiaries.Address.Line2 | string | Address Line 2 of the beneficiary. |
Accounts.Beneficiaries.Address.Line3 | string | Address Line 3 of the beneficiary. |
Accounts.Beneficiaries.Address.Postcode | string | Postcode of the beneficiary. |
Accounts.Beneficiaries.Address.Suburb | string | Suburb of the beneficiary. |
Accounts.Beneficiaries.Address.CountryCode | string | Country code of the beneficiary. |
Accounts.Beneficiaries.Address.IsRegistered | boolean | Address is registered. |
Accounts.Beneficiaries.FullName | string | Full name of beneficiary. |
Accounts.Beneficiaries.Relationship | enum | Spouse = 1, Child = 2, Other = 3, PersonalLegalRepresentative = 8. |
Accounts.Beneficiaries.DateOfBirth | date-time | Date of birth of beneficiary. |
Accounts.IsBindingNomination | boolean | If nomination is binding. |
Response Examples
# 200 - OK
{
"ApplicationId": "c1bdac67-39a0-4835-8168-e99f44f01iu7"
}
Response Parameters
Parameter | Type | Description |
---|---|---|
ApplicationId | string | Unique application ID to be used as an application reference. |
POST Individual Applicant & SuperSMA Transition-To-Retirement Account - AU
Definition: https://api.onpraemium.com/api/application
This endpoint creates a individual applicant and a SuperSMA Transition to Retirement account in the system.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AdviserId": 123456,
"Applicants": [
{
"ApplicantType": 0,
"IndividualDetails": {
"Title": "Mr",
"FirstName": "John",
"LastName": "Smith",
"Email": "j.smith@example.com",
"Phone": "012489235",
"PhoneOther": "012489235",
"Gender": 1,
"HomeAddress": {
"Street": "123 Test St",
"Postcode": "3000",
"Suburb": "Melbourne",
"State": "VIC",
"CountryCode": "AUS"
},
"MailingAddress": {
"Street": "123 Test St",
"Postcode": "3000",
"Suburb": "Melbourne",
"State": "VIC",
"CountryCode": "AUS"
},
"Identifications": [
{
"Type": 0,
"Value": "123456789"
},
{
"MissingReason": 1,
"MissingReasonText": "test"
}
],
"IsPoliticallyExposedPerson": true,
"PepDetails": "Senior politician"
}
}
],
"Accounts": [
{
"Name": "Miss Jane Smith",
"RegisteredName": "Miss Jane Smith",
"ShortName": "Jane",
"AccountType": 16,
"PdsId": "AU5",
"Fees": [
{
"Id": "AU21871",
"Rate": 0,
"Unit": "Dollar"
}
],
"Models": [
{
"Code": "AU0001",
"Proportion": 50
},
{
"Code": "IN0001",
"Proportion": 50
}
],
"BankAccounts": [
{
"Bsb": "12012",
"AccountNumber": "6555555567",
"AccountName": "Jane Smith",
"Usages": [
"Income",
"CashContribution"
]
}
],
"Exclusions": [
{
"Code": "AU0002",
"Exchange": "ASX"
}
],
"InitialInvestmentSuper": {
"ContributionSources": [
{
"MemberNumber": "test member number",
"SourceOfContribution": {
"ProductName": "test product name",
"Usi": "test usi"
},
"EntireBalance": true,
"ExpectedAmount": 35234.43543
}
],
"Transfers": [
{
"AccountId": "AU123456",
"TransferMethod": 1,
"Amount": 35234.43543
}
],
"OtherContributions": [
{
"ContributionType": 21,
"ExpectedAmount": 35234.43543
}
]
},
"PensionPayment": {
"Type": 0,
"Amount": 100.0,
"CommencementDate": "2021-01",
"Frequency": 0
},
"TargetAllocation": {
"Fees": [
{
"Code": "AB0101",
"Percentage": 100
}
],
"Income": [],
"Payments": []
},
"ReversionaryBeneficiary": {
"FullName": "Mr. John Smith",
"Sex": 1,
"Relationship": 2,
"DateOfBirth": "2000-01-01"
},
"Beneficiaries": [],
"IsBindingNomination": false
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AdviserIdrequired | integer | Adviser ID to create the application under. |
OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicantsrequired | array | Objects containing the applicant data. There must be at least one applicant for the request to succeed. The array of objects may contain a mix of Individual and Corporate applicants. |
Applicants.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicants.ApplicantType | enum | Individual = 0. |
Applicants.IndividualDetails | object | Used for Individual applicants. |
Applicants.IndividualDetails.Title | string | Title: Mr, Mrs, Ms, Miss, Doctor, Lady, Prof and Sir. |
Applicants.IndividualDetails.FirstName | string | First name of individual. |
Applicants.IndividualDetails.LastName | string | Last name of individual. |
Applicants.IndividualDetails.DateOfBirth | date-time | Date of birth of the individual. |
Applicants.IndividualDetails.Email | string | Email address of the individual. |
Applicants.IndividualDetails.Phone | string | Primary contact number of the individual. |
Applicants.IndividualDetails.PhoneOther | string | Other phone of the individual. |
Applicants.IndividualDetails.Genderrequired | enum | Male = 1, Female = 2. |
Applicants.IndividualDetails.UserName | string | User Name of individual applicant. |
Applicants.IndividualDetails.UserId | string | User ID of individual applicant. |
Applicants.IndividualDetails.IsPoliticallyExposedPerson | boolean | Whether applicant is politically exposed. |
Applicants.IndividualDetails.PepDetails | string | If applicant is politically exposed, details must be supplied. |
Applicants.IndividualDetails.TaxResidenceCountryCode | string | Tax residence country code. |
Applicants.IndividualDetails.CitizenshipCountryCode | string | Citizenship country code. |
Applicants.IndividualDetails.Identifications | array | Array of TFN / ABN. |
Applicants.IndividualDetails.Identifications.Type | enum | Tfn = 0, Tin = 2. |
Applicants.IndividualDetails.Identifications.Value | string | Identification value of applicant. |
Applicants.IndividualDetails.Identifications.MissingReason | enum | CountryDoesntIssue = 1, DontNeedOne = 2, Other = 99. |
Applicants.IndividualDetails.Identifications.MissingReasonText | string | Reason identification of applicant is missing. |
Applicants.IndividualDetails.HomeAddress | object | Home address of individual applicant. |
Applicants.IndividualDetails.HomeAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.HomeAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.HomeAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.HomeAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.HomeAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.HomeAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.HomeAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.IndividualDetails.MailingAddress | object | Mailing address of individual applicant. |
Applicants.IndividualDetails.MailingAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.MailingAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.MailingAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.MailingAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.MailingAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.MailingAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.MailingAddress.IsRegistered | boolean | Whether address is registered. |
Accounts | array | Array of accounts to be opened with the application. Must be linked to an included applicant. |
Accounts.Name | string | Account name. |
Accounts.RegisteredName | string | Account registered name. |
Accounts.ShortName | string | Account short name. |
Accounts.AccountTyperequired | enum | SuperSmaPensionTtr = 18. |
Accounts.PdsId | string | PDS ID of account. |
Accounts.Fees | array | Account fees. |
Accounts.Fees.Id | string | Fee ID. |
Accounts.Fees.Rate | double | Fee rate. |
Accounts.Fees.Unit | string | Fee unit, dollars or percentage. |
Accounts.Models | array | Account models. |
Accounts.Models.Coderequired | string | Model code. |
Accounts.Models.Proportion | double | Proportion of model. |
Accounts.BankAccounts | array | Bank accounts. |
Accounts.BankAccounts.Bsb | string | Bank account BSB. |
Accounts.BankAccounts.AccountNumber | string | Bank account number. |
Accounts.BankAccounts.AccountName | string | Bank account name. |
Accounts.BankAccounts.Usages | array | This allows you to define a regular cash addition or withdrawal from the SMA or SuperSMA. |
Accounts.Exclusions | array | Account exclusions. |
Accounts.Exclusions.Security | object | Security code of the exclusion. |
Accounts.Exclusions.Security.Coderequired | string | Security code of the security. |
Accounts.Exclusions.Security.Exchangerequired | string | Exchange code of the security. |
Accounts.TargetAllocation | object | Target allocation. |
Accounts.TargetAllocation.Fees | array | Target allocation fees. |
Accounts.TargetAllocation.Fees.Code | string | Target allocation fees code. |
Accounts.TargetAllocation.Fees.Percentage | double | Target allocation fees percentage. |
Accounts.TargetAllocation.Income | array | Target allocation income. |
Accounts.TargetAllocation.Income.Code | string | Target allocation income code. |
Accounts.TargetAllocation.Income.Percentage | double | Target allocation income percentage. |
Accounts.TargetAllocation.Payments | array | Target allocation payment. |
Accounts.TargetAllocation.Payments.Code | string | Target allocation payment code. |
Accounts.TargetAllocation.Payments.Percentage | double | Target allocation payment percentage. |
Accounts.PensionPayment | object | Pension Payment. |
Accounts.PensionPayment.Type | enum | Specified = 0, Minimum = 1. |
Accounts.PensionPayment.Amount | double | Pension payment amount. |
Accounts.PensionPayment.Frequency | enum | Monthly = 0, Quarterly = 1, SemiAnnually = 2, Annually = 3. |
Accounts.PensionPayment.CommencementDate | date-time | Pension payment commencement date. |
Accounts.InitialInvestmentSuper | object | Initial investment for super. |
Accounts.InitialInvestmentSuper.ContributionSources | array | Initial investment super contribution sources. |
Accounts.InitialInvestmentSuper.ContributionSources.MemberNumber | string | Contribution sources member number. |
Accounts.InitialInvestmentSuper.ContributionSources.SourceOfContribution | object | Source of contribution. |
Accounts.InitialInvestmentSuper.ContributionSources.SourceOfContribution.ProductName | string | Source of contribution product name. |
Accounts.InitialInvestmentSuper.ContributionSources.SourceOfContribution.Usi | string | Source of contribution USI. |
Accounts.InitialInvestmentSuper.ContributionSources.EntireBalance | boolean | Entire balance. |
Accounts.InitialInvestmentSuper.ContributionSources.ExpectedAmount | double | Expected amount. |
Accounts.InitialInvestmentSuper.Transfers | array | Initial investment super transfers. |
Accounts.InitialInvestmentSuper.Transfers.AccountId | string | Transfer account ID. |
Accounts.InitialInvestmentSuper.Transfers.TransferMethod | enum | WholeAmountWithClose = 0, WholeAmountKeepOpen = 1, SpecifiedAmount = 2 - whether the source account will be kept open. |
Accounts.InitialInvestmentSuper.Transfers.Amount | double | Transfer amount. |
Accounts.InitialInvestmentSuper.OtherContributions | array | Other contributions. |
Accounts.InitialInvestmentSuper.OtherContributions.ContributionType | enum | NonConcessional_Personal = 21, NonConcessional_Spouse = 22, NonConcessional_Child = 24, Downsizer = 43. |
Accounts.InitialInvestmentSuper.OtherContributions.ExpectedAmount | double | Other contributions expected amount. |
Accounts.ReversionaryBeneficiary | object | Reversionary beneficiary. |
Accounts.ReversionaryBeneficiary.Sex | enum | Male = 1, Female = 2. |
Accounts.ReversionaryBeneficiary.FullName | string | Full name of beneficiary. |
Accounts.ReversionaryBeneficiary.Relationship | enum | Spouse = 1, Child = 2, Other = 3. |
Accounts.ReversionaryBeneficiary.DateOfBirth | date-time | Date of birth of beneficiary. |
Accounts.Beneficiaries | array | Beneficiaries. |
Accounts.Beneficiaries.Proportion | double | The portion of the benefit that should be paid to the beneficiary. These must add up to 100%. |
Accounts.Beneficiaries.Address | object | Address of the beneficiary. |
Accounts.Beneficiaries.Address.Streetrequired | string | Address street of the beneficiary. |
Accounts.Beneficiaries.Address.Line2 | string | Address Line 2 of the beneficiary. |
Accounts.Beneficiaries.Address.Line3 | string | Address Line 3 of the beneficiary. |
Accounts.Beneficiaries.Address.Postcode | string | Postcode of the beneficiary. |
Accounts.Beneficiaries.Address.Suburb | string | Suburb of the beneficiary. |
Accounts.Beneficiaries.Address.CountryCode | string | Country code of the beneficiary. |
Accounts.Beneficiaries.Address.IsRegistered | boolean | Address is registered. |
Accounts.Beneficiaries.FullName | string | Full name of beneficiary. |
Accounts.Beneficiaries.Relationship | enum | Spouse = 1, Child = 2, Other = 3, PersonalLegalRepresentative = 8. |
Accounts.Beneficiaries.DateOfBirth | date-time | Date of birth of beneficiary. |
Accounts.IsBindingNomination | boolean | If nomination is binding. |
Response Examples
# 200 - OK
{
"ApplicationId": "c1bdac67-39a0-4835-8168-e99f44f01iu7"
}
Response Parameters
Parameter | Type | Description |
---|---|---|
ApplicationId | string | Unique application ID to be used as an application reference. |
POST Individual Applicant & GIA Account - UK
Definition: https://api.onpraemium.com/api/application
This endpoint creates a individual applicant and GIA account in the system.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AdviserId": 123456,
"Applicants": [
{
"ApplicantType": 0,
"IndividualDetails": {
"Title": "Mr",
"FirstName": "John",
"LastName": "Smith",
"Email": "j.smith@example.com",
"Phone": "012489235",
"PhoneOther": "012489235",
"Gender": 1,
"BirthCountryCode": "AUS",
"DualNationality": false,
"UsPerson": true,
"Profession": "Software engineer",
"SourceOfWealth": "Secret source",
"TaxResidences": [
{
"CountryCode": "CAN",
"From": "2020-10-01T00:00:00Z",
"To": "2020-10-01T00:00:00Z",
"Identification": "ui9089",
"NoDocument": false
}
],
"HomeAddress": {
"Addressee": "Yoki individual",
"Street": "123 Test St",
"Postcode": "BR5 4HL",
"Suburb": "Orpington",
"State": "KENT",
"CountryCode": "UK"
},
"MailingAddress": {
"Addressee": "Yoki individual",
"Street": "123 Test St",
"Postcode": "BR5 4HL",
"Suburb": "Orpington",
"State": "KENT",
"CountryCode": "UK"
},
"NationalIdentifier": {
"CountryOfNationality": "USA",
"IdentifierType": 0,
"IdentifierCode": "",
"NoNationalIdentifier": true
},
"ReceiveCommunicationByPost": true,
"IsPoliticallyExposedPerson": true
}
}
],
"Accounts": [
{
"Name": "Miss Jane Smith",
"RegisteredName": "Miss Jane Smith",
"ShortName": "Jane",
"AccountType": 1,
"PdsId": "UK5",
"SourceOfFunds": "Loan",
"AdviserReference": "123123",
"OngoingFeeAmount": 2.5,
"ReinvestIncome": false,
"ProductId": "UK96",
"ProductProviderReference": "Praemium International Limited",
"RegularContribution": {
"Amount": 150.5,
"Method": 3,
"Frequency": 0
},
"RegularWithdrawal": {
"Amount": 120,
"Method": 2,
"Frequency": 0
},
"Region": 2,
"CurrencyCode": "GBP",
"Fees": [
{
"Id": "UK21871",
"Rate": 0,
"Unit": "Dollar"
}
],
"Models": [
{
"Code": "UK0001",
"Proportion": 50
},
{
"Code": "IN0001",
"Proportion": 50
}
],
"BankAccounts": [
{
"SortCode": "12012",
"AccountNumber": "6555555567",
"AccountName": "Jane Smith"
}
],
"Exclusions": [
{
"Code": "UK0002",
"Exchange": "ASX"
}
],
"InitialInvestment": {
"Cash": 132.12,
"Shares": 321.32,
"Method": 0
},
"IllustrationData": {
"CostsAndCharges": [
{
"Type": 0,
"Amount": 123.123
},
{
"Type": 1,
"Amount": 321.123
},
{
"Type": 2,
"Amount": 123.123
}
]
},
"InSpecieCashStockTransfers": [
{
"TransferType": 0,
"CedingPartyId": "UK29821",
"CedingAccountNumber": "123456",
"InSpecieCashStockTransferDetails": [
{
"SecurityIsin": "UK000000ROC4",
"Quantity": 123.123,
"BookCost": 3242.32432
}
]
}
],
"IsTradeFreezeOn": true,
"TradeFreezeReason": 4,
"TradeFreezeNote": "just freeze it"
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AdviserIdrequired | integer | Adviser ID to create the application under. |
OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicantsrequired | array | Objects containing the applicant data. There must be at least one applicant for the request to succeed. The array of objects may contain a mix of Individual and Corporate applicants. |
Applicants.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicants.ApplicantType | enum | Individual = 0. |
Applicants.IndividualDetails | object | Used for Individual applicants. |
Applicants.IndividualDetails.CitizenshipCountryCode | string | Citizenship country code. |
Applicants.IndividualDetails.BirthCountryCode | string | Birth country code. |
Applicants.IndividualDetails.HomeAddress | object | Home address of individual applicant. |
Applicants.IndividualDetails.HomeAddress.Addressee | string | Addressee. |
Applicants.IndividualDetails.HomeAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.HomeAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.HomeAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.HomeAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.HomeAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.HomeAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.HomeAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.IndividualDetails.MailingAddress | object | Mailing address of individual applicant. |
Applicants.IndividualDetails.MailingAddress.Addressee | string | Addressee. |
Applicants.IndividualDetails.MailingAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.MailingAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.MailingAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.MailingAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.MailingAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.MailingAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.MailingAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.IndividualDetails.Genderrequired | enum | Male = 1, Female = 2. |
Applicants.IndividualDetails.UserName | string | User Name of individual applicant. |
Applicants.IndividualDetails.UserId | string | User ID of individual applicant. |
Applicants.IndividualDetails.TaxResidences | array | Applicant's tax residence. |
Applicants.IndividualDetails.TaxResidences.CountryCode | string | Tax residence country code. |
Applicants.IndividualDetails.TaxResidences.From | date-time | From date that applicant held tax residence in that country. |
Applicants.IndividualDetails.TaxResidences.To | date-time | To date that applicant held tax residence in that country. |
Applicants.IndividualDetails.TaxResidences.Identification | string | Tax residence identification. |
Applicants.IndividualDetails.TaxResidences.NoDocument | boolean | If the applicant does not hold a identification document. |
Applicants.IndividualDetails.UsPerson | boolean | Select if applicant is from the US. |
Applicants.IndividualDetails.SourceOfWealth | string | Provide the applicant's source of wealth. |
Applicants.IndividualDetails.Profession | string | Provide the applicant's profession. |
Applicants.IndividualDetails.Title | string | Title: Mr, Mrs, Ms, Miss, Doctor, Lady, Prof and Sir. |
Applicants.IndividualDetails.FirstName | string | First name of individual. |
Applicants.IndividualDetails.LastName | string | Last name of individual. |
Applicants.IndividualDetails.DateOfBirth | date-time | Date of birth of the individual. |
Applicants.IndividualDetails.Email | string | Email address of the individual. |
Applicants.IndividualDetails.Phone | string | Primary contact number of the individual. |
Applicants.IndividualDetails.PhoneOther | string | Other phone of the individual. |
Applicants.IndividualDetails.NationalIdentifier | object | Individual's national identifier. |
Applicants.IndividualDetails.NationalIdentifier.CountryOfNationality | string | Applicant's country of national identifier. |
Applicants.IndividualDetails.NationalIdentifier.IdentifierType | enum | NoDocument = 0, NationalId = 1, Passport = 2, TaxNumber = 3, LEI = 4. |
Applicants.IndividualDetails.NationalIdentifier.IdentifierCode | string | Applicant's national identifier code. |
Applicants.IndividualDetails.ReceiveCommunicationByPost | boolean | If you would like to opt out of electronic communications. |
Applicants.IndividualDetails.IsPoliticallyExposedPerson | boolean | Whether applicant is politically exposed. |
Accounts | array | Array of accounts to be opened with the application. Must be linked to an included applicant. |
Accounts.Name | string | Account name. |
Accounts.RegisteredName | string | Account registered name. |
Accounts.ShortName | string | Account short name. |
Accounts.AccountTyperequired | enum | Gia = 1. |
Accounts.PdsId | string | PDS ID of account. |
Accounts.Fees | array | Account fees. |
Accounts.Fees.Id | string | Fee ID. |
Accounts.Fees.Rate | double | Fee rate. |
Accounts.Fees.Unit | string | Fee unit, dollars or percentage. |
Accounts.Fees.Type | string | Fee type. |
Accounts.Models | array | Account models. |
Accounts.Models.Code | string | Model code. |
Accounts.Models.Proportion | double | Proportion of model. |
Accounts.BankAccounts | array | Bank accounts. |
Accounts.BankAccounts.SortCode | string | Bank account sort code. |
Accounts.BankAccounts.AccountNumber | string | Bank account number. |
Accounts.BankAccounts.AccountName | string | Bank account name. |
Accounts.BankAccounts.Bic | string | Bank identifier code (BIC) of your banking institution. |
Accounts.BankAccounts.Iban | string | International bank account number (IBAN) of your banking institution. |
Accounts.BankAccounts.RoutingNumber | string | Routing number of banking institution. |
Accounts.Exclusions | array | Account exclusions. |
Accounts.Exclusions.Security | object | Security code of the exclusion. |
Accounts.Exclusions.Security.Code | string | Security code of the security. |
Accounts.Exclusions.Security.Exchange | string | Exchange code of the security. |
Accounts.InitialInvestment | object | Initial investment of account. |
Accounts.InitialInvestment.Cash | double | Select if the initial investment will include cash. |
Accounts.InitialInvestment.Shares | double | Select if the initial investment will include shares. |
Accounts.InitialInvestment.Methodrequired | enum | ElectronicTransfer = 2, Cheque = 3. |
Accounts.SourceOfFunds | string | Contribution source. |
Accounts.OngoingFeeAmount | double | Ongoing fee amount. |
Accounts.ReinvestIncome | boolean | Reinvest income. |
Accounts.ProductId | string | Product ID. |
Accounts.ProductProviderReference | string | Product provider reference. |
Accounts.RegularContribution | object | Regular cash contributions to the account. |
Accounts.RegularWithdrawal | object | Regular cash withdrawals from the account. |
Accounts.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Accounts.Region | enum | Australia, UnitedKingdom or International. |
Accounts.CurrencyCode | string | The currency code of the account. |
Accounts.AdviserReference | string | Adviser reference.. |
Accounts.InSpecieCashStockTransfers | array | In specie cash stock transfers. |
Accounts.InSpecieCashStockTransfers.TransferTyperequired | enum | StockAndCash = 0, CashOnly = 1. |
Accounts.InSpecieCashStockTransfers.CedingPartyId | string | Ceding party ID. |
Accounts.InSpecieCashStockTransfers.CedingAccountNumber | string | Ceding account number. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails | array | In specie cash stock transfer details. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails.SecurityIsinrequired | string | Security ISIN of stock transfer. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails.Quantity | double | Quantity of stock transfer. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails.BookCost | double | Book cost of stock transfer. |
Accounts.InSpecieCashStockTransfers.CashTransferAmount | double | Cash transfer amount. |
Accounts.InSpecieCashStockTransfers.AmountUsedThisYear | double | Amount used this year. |
Accounts.InSpecieCashStockTransfers.FeeAmount | double | Fee amount. |
Accounts.InSpecieCashStockTransfers.FeePercent | double | Fee percent. |
Accounts.IsTradeFreezeOn | boolean | If a trade freeze is on. |
Accounts.TradeFreezeReason | enum | TransferIn = 0, TransferOut = 1, Incident = 2, Deceased = 3, RemovalOfAdviser = 4, AdviserInstructed = 5, Bespoke = 6. |
Accounts.TradeFreezeNote | string | Trade freeze note. |
Accounts.IllustrationData | object | Illustration data. |
Accounts.IllustrationData.CostsAndCharges | array | Cost and charges. |
Accounts.IllustrationData.CostsAndCharges.Type | enum | OneOffCharges = 0, OngoingCharges = 1, TransactionCharges = 2, IncidentalCharges = 3, ThirdPartyPayment = 4. |
Accounts.IllustrationData.CostsAndCharges.Amount | double | Amount of cost and charge. |
Response Examples
# 200 - OK
{
"ApplicationId": "c1bdac67-39a0-4835-8168-e99f44f01iu7"
}
Response Parameters
Parameter | Type | Description |
---|---|---|
ApplicationId | string | Unique application ID to be used as an application reference. |
POST Corporate Applicant & GIA Account - UK
Definition: https://api.onpraemium.com/api/application
This endpoint creates a corporate applicant and GIA account in the system.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AdviserId": 123456,
"Applicants": [
{
"ApplicantType": 1,
"CorporateDetails": {
"Name": "Test company",
"TradingName": "Test company",
"CompanyType": 1,
"BusinessAddress": {
"Addressee": "Test company",
"Street": "Street A",
"Postcode": "518000",
"Suburb": "Kingston",
"CountryCode": "CHN",
"IsRegistered": true
},
"MailingAddress": {
"Addressee": "Test company",
"Street": "test street",
"Line2": null,
"Line3": null,
"Postcode": "2050",
"Suburb": "dd",
"CountryCode": "GBR",
"IsRegistered": false
},
"Contact": {
"Title": "Ms",
"FirstName": "Test",
"LastName": "individual",
"FullName": null,
"DateOfBirth": "2002-10-15",
"Email": "111@test.com",
"Phone": "88900",
"PhoneOther": null,
"NationalIdentifier": null,
"ReceiveCommunicationByPost": true,
"IsPoliticallyExposedPerson": false
},
"Signatories": [
{
"Capacity": 0,
"Address": {
"Addressee": "111 222",
"Street": "Home",
"Line2": null,
"Line3": null,
"Postcode": "u090",
"Suburb": "Kingston",
"CountryCode": "HKG",
"IsRegistered": false
},
"TaxNumber": "ji000",
"CountryOfBirth": "",
"Title": "Miss",
"FirstName": "111",
"LastName": "222",
"FullName": null,
"DateOfBirth": "1998-12-01T00:00:00Z",
"Email": "test@praemium.com",
"Phone": "12345678",
"NationalIdentifier": {
"CountryOfNationality": "",
"IdentifierType": 0,
"IdentifierCode": "",
"NoNationalIdentifier": true
},
"ReceiveCommunicationByPost": false,
"IsPoliticallyExposedPerson": false
},
{
"Capacity": 0,
"Address": {
"Addressee": "Test individual",
"Street": "Test street",
"Line2": null,
"Line3": null,
"Postcode": "518000",
"Suburb": "SZ",
"CountryCode": "CHN",
"IsRegistered": false
},
"TaxNumber": "ui9089",
"CountryOfBirth": "JPN",
"Title": "Ms.",
"FirstName": "Test",
"LastName": "individual",
"FullName": null,
"DateOfBirth": "2002-10-15",
"Email": "111@test.com",
"Phone": "34313",
"PhoneOther": "88900",
"NationalIdentifier": {
"CountryOfNationality": "USA",
"IdentifierType": 0,
"IdentifierCode": "",
"NoNationalIdentifier": true
},
"ReceiveCommunicationByPost": true,
"IsPoliticallyExposedPerson": true
}
],
"CompanyRegistrationNumber": "689",
"TaxId": "6i87899",
"Lei": "689",
"CountryOfIncorporation": "AND",
"DateOfIncorporation": "2020-10-07",
"NatureOfActivities": "activity",
"BearerSharesAreInIssue": false,
"NameOfRegulator": "test regulator",
"RegulatorReferenceNumber": "12345678",
"ContactIsDirectorOrSignificantShareholder": false
}
}
],
"Accounts": [
{
"Name": "Miss Jane Smith",
"RegisteredName": "Miss Jane Smith",
"ShortName": "Jane",
"AccountType": 1,
"PdsId": "UK5",
"SourceOfFunds": "Loan",
"AdviserReference": "123123",
"OngoingFeeAmount": 2.5,
"ReinvestIncome": false,
"ProductId": "UK96",
"ProductProviderReference": "Praemium International Limited",
"RegularContribution": {
"Amount": 150.5,
"Method": 3,
"Frequency": 0
},
"RegularWithdrawal": {
"Amount": 120,
"Method": 2,
"Frequency": 0
},
"Region": 2,
"CurrencyCode": "GBP",
"Fees": [
{
"Id": "UK21871",
"Rate": 0,
"Unit": "Dollar"
}
],
"Models": [
{
"Code": "UK0001",
"Proportion": 50
},
{
"Code": "IN0001",
"Proportion": 50
}
],
"BankAccounts": [
{
"SortCode": "12012",
"AccountNumber": "6555555567",
"AccountName": "Jane Smith"
}
],
"Exclusions": [
{
"Code": "UK0002",
"Exchange": "ASX"
}
],
"InitialInvestment": {
"Cash": 132.12,
"Shares": 321.32,
"Method": 0
},
"IllustrationData": {
"CostsAndCharges": [
{
"Type": 0,
"Amount": 123.123
},
{
"Type": 1,
"Amount": 321.123
},
{
"Type": 2,
"Amount": 123.123
}
]
},
"InSpecieCashStockTransfers": [
{
"TransferType": 0,
"CedingPartyId": "UK29821",
"CedingAccountNumber": "123456",
"InSpecieCashStockTransferDetails": [
{
"SecurityIsin": "UK000000ROC4",
"Quantity": 123.123,
"BookCost": 3242.32432
}
]
}
],
"IsTradeFreezeOn": true,
"TradeFreezeReason": 4,
"TradeFreezeNote": "just freeze it"
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AdviserIdrequired | integer | Adviser ID to create the application under. |
OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicantsrequired | array | Objects containing the applicant data. There must be at least one applicant for the request to succeed. The array of objects may contain a mix of Individual and Corporate applicants. |
Applicants.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicants.ApplicantType | enum | Corporate = 1. |
Applicants.CorporateDetails | object | Used for Corporate applicants. |
Applicants.CorporateDetails.Name | string | Name of the corporate applicant. |
Applicants.CorporateDetails.TradingName | string | Trading name of the corporate applicant. |
Applicants.CorporateDetails.CompanyType | enum | Plc = 0, Ltd = 1, Llp = 2, Partnership = 3. |
Applicants.CorporateDetails.BusinessAddress | object | Business address. |
Applicants.CorporateDetails.BusinessAddress.Addressee | string | Addressee. |
Applicants.CorporateDetails.BusinessAddress.Street | string | Address line 1. |
Applicants.CorporateDetails.BusinessAddress.Line2 | string | Address line 2. |
Applicants.CorporateDetails.BusinessAddress.Line3 | string | Address line 3. |
Applicants.CorporateDetails.BusinessAddress.Postcode | string | Postcode of address. |
Applicants.CorporateDetails.BusinessAddress.Suburb | string | Suburb of address. |
Applicants.CorporateDetails.BusinessAddress.CountryCode | string | Country code of address. |
Applicants.CorporateDetails.BusinessAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.CorporateDetails.MailingAddress | object | Mailing address. |
Applicants.CorporateDetails.MailingAddress.Addressee | string | Addressee. |
Applicants.CorporateDetails.MailingAddress.Street | string | Address line 1. |
Applicants.CorporateDetails.MailingAddress.Line2 | string | Address line 2. |
Applicants.CorporateDetails.MailingAddress.Line3 | string | Address line 3. |
Applicants.CorporateDetails.MailingAddress.Postcode | string | Postcode of address. |
Applicants.CorporateDetails.MailingAddress.Suburb | string | Suburb of address. |
Applicants.CorporateDetails.MailingAddress.CountryCode | string | Country code of address. |
Applicants.CorporateDetails.MailingAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.CorporateDetails.ContactIsDirectorOrSignificantShareholder | boolean | Whether the contact is a director or significant shareholder on the account. |
Applicants.CorporateDetails.Contact | object | Primary contact. |
Applicants.CorporateDetails.Contact.Title | string | Title of contact. |
Applicants.CorporateDetails.Contact.FirstName | string | First name of contact. |
Applicants.CorporateDetails.Contact.LastName | string | Last name of contact. |
Applicants.CorporateDetails.Contact.DateOfBirth | date-time | Date of birth of contact. |
Applicants.CorporateDetails.Contact.Email | string | Email of contact. |
Applicants.CorporateDetails.Contact.Phone | string | Phone Number of contact. |
Applicants.CorporateDetails.Contact.PhoneOther | string | Secondary contact number of contact. |
Applicants.CorporateDetails.Contact.NationalIdentifier | object | National identifier. |
Applicants.CorporateDetails.Contact.NationalIdentifier.CountryOfNationality | string | Applicant's country of national identifier. |
Applicants.CorporateDetails.Contact.NationalIdentifier.IdentifierType | enum | NoDocument = 0, NationalId = 1, Passport = 2, TaxNumber = 3, LEI = 4. |
Applicants.CorporateDetails.Contact.NationalIdentifier.IdentifierCode | string | Applicant's national identifier code. |
Applicants.CorporateDetails.Contact.ReceiveCommunicationByPost | boolean | If you would like to opt out of electronic communications. |
Applicants.CorporateDetails.Contact.IsPoliticallyExposedPerson | boolean | Whether applicant is politically exposed. |
Applicants.CorporateDetails.Signatories | array | Corporate signatories. |
Applicants.CorporateDetails.Signatories.Capacity | enum | Director = 0, SignificantShareholder = 6. |
Applicants.CorporateDetails.Signatories.TaxNumber | string | Tax number of signatory. |
Applicants.CorporateDetails.Signatories.CountryOfBirth | string | Country of birth of signatory. |
Applicants.CorporateDetails.Signatories.Address | object | Address of signatory. |
Applicants.CorporateDetails.Signatories.Address.Addressee | string | Addressee. |
Applicants.CorporateDetails.Signatories.Address.Street | string | Address line 1. |
Applicants.CorporateDetails.Signatories.Address.Line2 | string | Address line 2. |
Applicants.CorporateDetails.Signatories.Address.Line3 | string | Address line 3. |
Applicants.CorporateDetails.Signatories.Address.Postcode | string | Postcode of address. |
Applicants.CorporateDetails.Signatories.Address.Suburb | string | Suburb of address. |
Applicants.CorporateDetails.Signatories.Address.CountryCode | string | Country code of address. |
Applicants.CorporateDetails.Signatories.Address.IsRegistered | boolean | Whether address is registered. |
Applicants.CorporateDetails.Signatories.Title | string | Title of signatory. |
Applicants.CorporateDetails.Signatories.FirstName | string | First name of signatory. |
Applicants.CorporateDetails.Signatories.LastName | string | Last name of signatory. |
Applicants.CorporateDetails.Signatories.DateOfBirth | date-time | Date of birth of signatory. |
Applicants.CorporateDetails.Signatories.Email | string | Email address of signatory. |
Applicants.CorporateDetails.Signatories.Phone | string | Phone number of signatory. |
Applicants.CorporateDetails.Signatories.PhoneOther | string | Secondary contact number of signatory. |
Applicants.CorporateDetails.Signatories.NationalIdentifier | object | Signatory's national identifier. |
Applicants.CorporateDetails.Signatories.NationalIdentifier.CountryOfNationality | string | Applicant's country of national identifier. |
Applicants.CorporateDetails.Signatories.NationalIdentifier.IdentifierType | enum | NoDocument = 0, NationalId = 1, Passport = 2, TaxNumber = 3, LEI = 4. |
Applicants.CorporateDetails.Signatories.NationalIdentifier.IdentifierCode | string | Applicant's national identifier code. |
Applicants.CorporateDetails.Signatories.ReceiveCommunicationByPost | boolean | If you would like to opt out of electronic communications. |
Applicants.CorporateDetails.Signatories.IsPoliticallyExposedPerson | boolean | Whether applicant is politically exposed. |
Applicants.CorporateDetails.CompanyRegistrationNumber | string | Register number of the company. |
Applicants.CorporateDetails.TaxId | string | Tax identity of the company. |
Applicants.CorporateDetails.Lei | string | LEI of the Company. |
Applicants.CorporateDetails.CountryOfIncorporation | string | Country of incorporation of the company. |
Applicants.CorporateDetails.DateOfIncorporation | date-time | Date of incorporation of the company. |
Applicants.CorporateDetails.NatureOfActivities | string | Nature of activities that the company performs. |
Applicants.CorporateDetails.BearerSharesAreInIssue | boolean | Bearer shares are in issue |
Applicants.CorporateDetails.NameOfRegulator | string | Name of regulator. |
Applicants.CorporateDetails.RegulatorReferenceNumber | string | Regulator reference number. |
Accounts | array | Array of accounts to be opened with the application. Must be linked to an included applicant. |
Accounts.Name | string | Account name. |
Accounts.RegisteredName | string | Account registered name. |
Accounts.ShortName | string | Account short name. |
Accounts.AccountTyperequired | enum | Gia = 1. |
Accounts.PdsId | string | PDS ID of account. |
Accounts.Fees | array | Account fees. |
Accounts.Fees.Id | string | Fee ID. |
Accounts.Fees.Rate | double | Fee rate. |
Accounts.Fees.Unit | string | Fee unit, dollars or percentage. |
Accounts.Fees.Type | string | Fee type. |
Accounts.Models | array | Account models. |
Accounts.Models.Code | string | Model code. |
Accounts.Models.Proportion | double | Proportion of model. |
Accounts.BankAccounts | array | Bank accounts. |
Accounts.BankAccounts.SortCode | string | Bank account sort code. |
Accounts.BankAccounts.AccountNumber | string | Bank account number. |
Accounts.BankAccounts.AccountName | string | Bank account name. |
Accounts.BankAccounts.Bic | string | Bank identifier code (BIC) of your banking institution. |
Accounts.BankAccounts.Iban | string | International bank account number (IBAN) of your banking institution. |
Accounts.BankAccounts.RoutingNumber | string | Routing number of banking institution. |
Accounts.Exclusions | array | Account exclusions. |
Accounts.Exclusions.Security | object | Security code of the exclusion. |
Accounts.Exclusions.Security.Code | string | Security code of the security. |
Accounts.Exclusions.Security.Exchange | string | Exchange code of the security. |
Accounts.InitialInvestment | object | Initial investment of account. |
Accounts.InitialInvestment.Cash | double | Select if the initial investment will include cash. |
Accounts.InitialInvestment.Shares | double | Select if the initial investment will include shares. |
Accounts.InitialInvestment.Methodrequired | enum | ElectronicTransfer = 2, Cheque = 3. |
Accounts.SourceOfFunds | string | Contribution source. |
Accounts.OngoingFeeAmount | double | Ongoing fee amount. |
Accounts.ReinvestIncome | boolean | Reinvest income. |
Accounts.ProductId | string | Product ID. |
Accounts.ProductProviderReference | string | Product provider reference. |
Accounts.RegularContribution | object | Regular cash contributions to the account. |
Accounts.RegularWithdrawal | object | Regular cash withdrawals from the account. |
Accounts.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Accounts.Region | enum | Australia, UnitedKingdom or International. |
Accounts.CurrencyCode | string | The currency code of the account. |
Accounts.AdviserReference | string | Adviser reference.. |
Accounts.InSpecieCashStockTransfers | array | In specie cash stock transfers. |
Accounts.InSpecieCashStockTransfers.TransferTyperequired | enum | StockAndCash = 0, CashOnly = 1. |
Accounts.InSpecieCashStockTransfers.CedingPartyId | string | Ceding party ID. |
Accounts.InSpecieCashStockTransfers.CedingAccountNumber | string | Ceding account number. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails | array | In specie cash stock transfer details. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails.SecurityIsinrequired | string | Security ISIN of stock transfer. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails.Quantity | double | Quantity of stock transfer. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails.BookCost | double | Book cost of stock transfer. |
Accounts.InSpecieCashStockTransfers.CashTransferAmount | double | Cash transfer amount. |
Accounts.InSpecieCashStockTransfers.AmountUsedThisYear | double | Amount used this year. |
Accounts.InSpecieCashStockTransfers.FeeAmount | double | Fee amount. |
Accounts.InSpecieCashStockTransfers.FeePercent | double | Fee percent. |
Accounts.IsTradeFreezeOn | boolean | If a trade freeze is on. |
Accounts.TradeFreezeReason | enum | TransferIn = 0, TransferOut = 1, Incident = 2, Deceased = 3, RemovalOfAdviser = 4, AdviserInstructed = 5, Bespoke = 6. |
Accounts.TradeFreezeNote | string | Trade freeze note. |
Accounts.IllustrationData | object | Illustration data. |
Accounts.IllustrationData.CostsAndCharges | array | Cost and charges. |
Accounts.IllustrationData.CostsAndCharges.Type | enum | OneOffCharges = 0, OngoingCharges = 1, TransactionCharges = 2, IncidentalCharges = 3, ThirdPartyPayment = 4. |
Accounts.IllustrationData.CostsAndCharges.Amount | double | Amount of cost and charge. |
Response Examples
# 200 - OK
{
"ApplicationId": "c1bdac67-39a0-4835-8168-e99f44f01iu7"
}
Response Parameters
Parameter | Type | Description |
---|---|---|
ApplicationId | string | Unique application ID to be used as an application reference. |
POST Trust Applicant & GIA Account - UK
Definition: https://api.onpraemium.com/api/application
This endpoint creates a Trust applicant and GIA account in the system.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AdviserId": 123456,
"Applicants": [
{
"ApplicantType": 2,
"TrustDetails": {
"TrustName": "Test company",
"NatureOfTrust": 1,
"Lei": "123456",
"DateOfEstablishment": "2020-01-01",
"TaxDomicile": "some place",
"Address": {
"Addressee": "Test company",
"Street": "Street A",
"Postcode": "518000",
"Suburb": "Kingston",
"CountryCode": "CHN",
"IsRegistered": true
},
"Signatories": [
{
"Capacity": 4,
"Address": {
"Addressee": "111 222",
"Street": "Home",
"Line2": null,
"Line3": null,
"Postcode": "u090",
"Suburb": "Kingston",
"CountryCode": "HKG",
"IsRegistered": false
},
"TaxNumber": "ji000",
"CountryOfBirth": "",
"Title": "Miss",
"FirstName": "111",
"LastName": "222",
"FullName": null,
"DateOfBirth": "1998-12-01T00:00:00Z",
"Email": "test@praemium.com",
"Phone": "12345678",
"NationalIdentifier": {
"CountryOfNationality": "",
"IdentifierType": 0,
"IdentifierCode": "",
"NoNationalIdentifier": true
},
"ReceiveCommunicationByPost": false,
"IsPoliticallyExposedPerson": false
}
],
"CorporateTrustees": [
{
"Name": "Test company",
"TradingName": "Test company",
"CompanyType": 1,
"BusinessAddress": {
"Addressee": "Test company",
"Street": "Street A",
"Postcode": "518000",
"Suburb": "Kingston",
"CountryCode": "CHN",
"IsRegistered": true
},
"MailingAddress": {
"Addressee": "Test company",
"Street": "Street A",
"Postcode": "518000",
"Suburb": "Kingston",
"CountryCode": "CHN",
"IsRegistered": true
},
"CompanyRegistrationNumber": "689",
"TaxId": "6i87899",
"Lei": "123456",
"NameOfRegulator": "test regulator",
"RegulatorReferenceNumber": "12345678",
"Director": {
"Address": {
"Addressee": "111 222",
"Street": "Home",
"Line2": null,
"Line3": null,
"Postcode": "u090",
"Suburb": "Kingston",
"CountryCode": "HKG",
"IsRegistered": false
},
"TaxNumber": "ji000",
"CountryOfBirth": "",
"Title": "Miss",
"FirstName": "111",
"LastName": "222",
"FullName": null,
"DateOfBirth": "1998-12-01T00:00:00Z",
"Email": "test@praemium.com",
"Phone": "12345678",
"NationalIdentifier": {
"CountryOfNationality": "",
"IdentifierType": 0,
"IdentifierCode": "",
"NoNationalIdentifier": true
},
"ReceiveCommunicationByPost": false,
"IsPoliticallyExposedPerson": true
}
}
]
}
}
],
"Accounts": [
{
"Name": "Miss Jane Smith",
"RegisteredName": "Miss Jane Smith",
"ShortName": "Jane",
"AccountType": 1,
"PdsId": "UK5",
"SourceOfFunds": "Loan",
"AdviserReference": "123123",
"OngoingFeeAmount": 2.5,
"ReinvestIncome": false,
"ProductId": "UK96",
"ProductProviderReference": "Praemium International Limited",
"RegularContribution": {
"Amount": 150.5,
"Method": 3,
"Frequency": 0
},
"RegularWithdrawal": {
"Amount": 120,
"Method": 2,
"Frequency": 0
},
"Region": 2,
"CurrencyCode": "GBP",
"Fees": [
{
"Id": "UK21871",
"Rate": 0,
"Unit": "Dollar"
}
],
"Models": [
{
"Code": "UK0001",
"Proportion": 50
},
{
"Code": "IN0001",
"Proportion": 50
}
],
"BankAccounts": [
{
"SortCode": "12012",
"AccountNumber": "6555555567",
"AccountName": "Jane Smith"
}
],
"Exclusions": [
{
"Code": "UK0002",
"Exchange": "ASX"
}
],
"InitialInvestment": {
"Cash": 132.12,
"Shares": 321.32,
"Method": 0
},
"IllustrationData": {
"CostsAndCharges": [
{
"Type": 0,
"Amount": 123.123
},
{
"Type": 1,
"Amount": 321.123
},
{
"Type": 2,
"Amount": 123.123
}
]
},
"InSpecieCashStockTransfers": [
{
"TransferType": 0,
"CedingPartyId": "UK29821",
"CedingAccountNumber": "123456",
"InSpecieCashStockTransferDetails": [
{
"SecurityIsin": "UK000000ROC4",
"Quantity": 123.123,
"BookCost": 3242.32432
}
]
}
],
"IsTradeFreezeOn": true,
"TradeFreezeReason": 4,
"TradeFreezeNote": "just freeze it"
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AdviserIdrequired | integer | Adviser ID to create the application under. |
OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicantsrequired | array | Objects containing the applicant data. There must be at least one applicant for the request to succeed. The array of objects may contain a mix of Individual and Corporate applicants. |
Applicants.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicants.ApplicantType | enum | Trust = 2. |
Applicants.TrustDetails | object | Used for Trust applicants. |
Applicants.TrustDetails.TrustName | string | Name of the trust. |
Applicants.TrustDetails.NatureOfTrust | enum | Nature of the trust. Bare = 0, Charitable = 1, Will = 2, Interest in possession = 3, Discretionary = 4, Accumulation = 5, Settlor interested = 6, Granted = 7, Single Person Pension = 8, Multiple Member Personal Pension = 9, Single Member SSAS = 10, Multiple Member SSAS = 11, Loan = 12. |
Applicants.TrustDetails.Lei | string | LEI of trust. |
Applicants.TrustDetails.DateOfEstablishment | date-time | Date trust was established. |
Applicants.TrustDetails.TaxDomicile | string | Tax domicile of trust. |
Applicants.TrustDetails.BeneficiariesHaveVestedRights | boolean | If beneficiaries have vested rights. |
Applicants.TrustDetails.Address | object | Address of Trust. |
Applicants.TrustDetails.Address.Addressee | string | Addressee. |
Applicants.TrustDetails.Address.Street | string | Address line 1. |
Applicants.TrustDetails.Address.Line2 | string | Address line 2. |
Applicants.TrustDetails.Address.Line3 | string | Address line 3. |
Applicants.TrustDetails.Address.Postcode | string | Postcode of address. |
Applicants.TrustDetails.Address.Suburb | string | Suburb of address. |
Applicants.TrustDetails.Address.CountryCode | string | Country code of address. |
Applicants.TrustDetails.Address.IsRegistered | boolean | Whether address is registered. |
Applicants.TrustDetails.Signatories | array | Signatories of the trust. |
Applicants.TrustDetails.Signatories.Capacity | enum | Trustee = 4, Beneficiary = 7. |
Applicants.TrustDetails.Signatories.TaxNumber | string | Tax number of signatory. |
Applicants.TrustDetails.Signatories.CountryOfBirth | string | Country of birth of signatory. |
Applicants.TrustDetails.Signatories.Address | object | Address of signatory. |
Applicants.TrustDetails.Signatories.Address.Addressee | string | Addressee. |
Applicants.TrustDetails.Signatories.Address.Street | string | Address line 1. |
Applicants.TrustDetails.Signatories.Address.Line2 | string | Address line 2. |
Applicants.TrustDetails.Signatories.Address.Line3 | string | Address line 3. |
Applicants.TrustDetails.Signatories.Address.Postcode | string | Postcode of address. |
Applicants.TrustDetails.Signatories.Address.Suburb | string | Suburb of address. |
Applicants.TrustDetails.Signatories.Address.CountryCode | string | Country code of address. |
Applicants.TrustDetails.Signatories.Address.IsRegistered | boolean | Whether address is registered. |
Applicants.TrustDetails.Signatories.Title | string | Title of signatory. |
Applicants.TrustDetails.Signatories.FirstName | string | First name of signatory. |
Applicants.TrustDetails.Signatories.LastName | string | Last name of signatory. |
Applicants.TrustDetails.Signatories.DateOfBirth | date-time | Date of birth of signatory. |
Applicants.TrustDetails.Signatories.Email | string | Email address of signatory. |
Applicants.TrustDetails.Signatories.Phone | string | Phone number of signatory. |
Applicants.TrustDetails.Signatories.PhoneOther | string | Secondary contact number of signatory. |
Applicants.TrustDetails.Signatories.NationalIdentifier | object | Signatory's national identifier. |
Applicants.TrustDetails.Signatories.NationalIdentifier.CountryOfNationality | string | Applicant's country of national identifier. |
Applicants.TrustDetails.Signatories.NationalIdentifier.IdentifierType | enum | NoDocument = 0, NationalId = 1, Passport = 2, TaxNumber = 3, LEI = 4. |
Applicants.TrustDetails.Signatories.NationalIdentifier.IdentifierCode | string | Applicant's national identifier code. |
Applicants.TrustDetails.Signatories.ReceiveCommunicationByPost | boolean | If you would like to opt out of electronic communications. |
Applicants.TrustDetails.Signatories.IsPoliticallyExposedPerson | boolean | Whether applicant is politically exposed. |
Applicants.TrustDetails.CorporateTrustees | array | Corporate trustees of the trust. |
Applicants.TrustDetails.CorporateTrustees.Name | string | Name of the corporate applicant. |
Applicants.TrustDetails.CorporateTrustees.TradingName | string | Trading name of the corporate applicant. |
Applicants.TrustDetails.CorporateTrustees.CompanyType | enum | Plc = 0, Ltd = 1, Llp = 2, Partnership = 3. |
Applicants.TrustDetails.CorporateTrustees.BusinessAddress | object | Business address. |
Applicants.TrustDetails.CorporateTrustees.BusinessAddress.Addressee | string | Addressee. |
Applicants.TrustDetails.CorporateTrustees.BusinessAddress.Street | string | Address line 1. |
Applicants.TrustDetails.CorporateTrustees.BusinessAddress.Line2 | string | Address line 2. |
Applicants.TrustDetails.CorporateTrustees.BusinessAddress.Line3 | string | Address line 3. |
Applicants.TrustDetails.CorporateTrustees.BusinessAddress.Postcode | string | Postcode of address. |
Applicants.TrustDetails.CorporateTrustees.BusinessAddress.Suburb | string | Suburb of address. |
Applicants.TrustDetails.CorporateTrustees.BusinessAddress.CountryCode | string | Country code of address. |
Applicants.TrustDetails.CorporateTrustees.BusinessAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.TrustDetails.CorporateTrustees.MailingAddress | object | Mailing address. |
Applicants.TrustDetails.CorporateTrustees.MailingAddress.Addressee | string | Addressee. |
Applicants.TrustDetails.CorporateTrustees.MailingAddress.Street | string | Address line 1. |
Applicants.TrustDetails.CorporateTrustees.MailingAddress.Line2 | string | Address line 2. |
Applicants.TrustDetails.CorporateTrustees.MailingAddress.Line3 | string | Address line 3. |
Applicants.TrustDetails.CorporateTrustees.MailingAddress.Postcode | string | Postcode of address. |
Applicants.TrustDetails.CorporateTrustees.MailingAddress.Suburb | string | Suburb of address. |
Applicants.TrustDetails.CorporateTrustees.MailingAddress.CountryCode | string | Country code of address. |
Applicants.TrustDetails.CorporateTrustees.MailingAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.TrustDetails.CorporateTrustees.CompanyRegistrationNumber | string | Register number of the company. |
Applicants.TrustDetails.CorporateTrustees.TaxId | string | Tax identity of the company. |
Applicants.TrustDetails.CorporateTrustees.Lei | string | LEI of the Company. |
Applicants.TrustDetails.CorporateTrustees.NameOfRegulator | string | Name of regulator. |
Applicants.TrustDetails.CorporateTrustees.RegulatorReferenceNumber | string | Regulator reference number. |
Applicants.TrustDetails.CorporateTrustees.Director | object | Director of the corporate trustee. |
Applicants.TrustDetails.CorporateTrustees.Director.Title | string | Title of signatory. |
Applicants.TrustDetails.CorporateTrustees.Director.FirstNamerequired | string | First name of signatory. |
Applicants.TrustDetails.CorporateTrustees.Director.LastNamerequired | string | Last name of signatory. |
Applicants.TrustDetails.CorporateTrustees.Director.DateOfBirth | date-time | Date of birth of signatory. |
Applicants.TrustDetails.CorporateTrustees.Director.Email | string | Email address of signatory. |
Applicants.TrustDetails.CorporateTrustees.Director.Phone | string | Phone number of signatory. |
Applicants.TrustDetails.CorporateTrustees.Director.PhoneOther | string | Secondary contact number of signatory. |
Applicants.TrustDetails.CorporateTrustees.Director.Capacity | enum | |
Applicants.TrustDetails.CorporateTrustees.Director.TaxNumber | string | Tax number of signatory. |
Applicants.TrustDetails.CorporateTrustees.Director.CountryOfBirth | string | Country of birth of signatory. |
Applicants.TrustDetails.CorporateTrustees.Director.Address | object | Address of signatory. |
Applicants.TrustDetails.CorporateTrustees.Director.Address.Addressee | string | Addressee. |
Applicants.TrustDetails.CorporateTrustees.Director.Address.Streetrequired | string | Address line 1. |
Applicants.TrustDetails.CorporateTrustees.Director.Address.Line2 | string | Address line 2. |
Applicants.TrustDetails.CorporateTrustees.Director.Address.Line3 | string | Address line 3. |
Applicants.TrustDetails.CorporateTrustees.Director.Address.Postcode | string | Postcode of address. |
Applicants.TrustDetails.CorporateTrustees.Director.Address.Suburb | string | Suburb of address. |
Applicants.TrustDetails.CorporateTrustees.Director.Address.CountryCode | string | Country code of address. |
Applicants.TrustDetails.CorporateTrustees.Director.Address.IsRegistered | boolean | Whether address is registered. |
Applicants.TrustDetails.CorporateTrustees.Director.NationalIdentifier | object | Signatory's national identifier. |
Applicants.TrustDetails.CorporateTrustees.Director.NationalIdentifier.CountryOfNationality | string | Applicant's country of national identifier. |
Applicants.TrustDetails.CorporateTrustees.Director.NationalIdentifier.IdentifierType | enum | NoDocument = 0, NationalId = 1, Passport = 2, TaxNumber = 3, LEI = 4. |
Applicants.TrustDetails.CorporateTrustees.Director.NationalIdentifier.IdentifierCode | string | Applicant's national identifier code. |
Applicants.TrustDetails.CorporateTrustees.Director.ReceiveCommunicationByPost | boolean | If you would like to opt out of electronic communications. |
Applicants.TrustDetails.CorporateTrustees.Director.IsPoliticallyExposedPerson | boolean | Whether applicant is politically exposed. |
Accounts | array | Array of accounts to be opened with the application. Must be linked to an included applicant. |
Accounts.Name | string | Account name. |
Accounts.RegisteredName | string | Account registered name. |
Accounts.ShortName | string | Account short name. |
Accounts.AccountTyperequired | enum | Gia = 1. |
Accounts.PdsId | string | PDS ID of account. |
Accounts.Fees | array | Account fees. |
Accounts.Fees.Id | string | Fee ID. |
Accounts.Fees.Rate | double | Fee rate. |
Accounts.Fees.Unit | string | Fee unit, dollars or percentage. |
Accounts.Fees.Type | string | Fee type. |
Accounts.Models | array | Account models. |
Accounts.Models.Code | string | Model code. |
Accounts.Models.Proportion | double | Proportion of model. |
Accounts.BankAccounts | array | Bank accounts. |
Accounts.BankAccounts.SortCode | string | Bank account sort code. |
Accounts.BankAccounts.AccountNumber | string | Bank account number. |
Accounts.BankAccounts.AccountName | string | Bank account name. |
Accounts.BankAccounts.Bic | string | Bank identifier code (BIC) of your banking institution. |
Accounts.BankAccounts.Iban | string | International bank account number (IBAN) of your banking institution. |
Accounts.BankAccounts.RoutingNumber | string | Routing number of banking institution. |
Accounts.Exclusions | array | Account exclusions. |
Accounts.Exclusions.Security | object | Security code of the exclusion. |
Accounts.Exclusions.Security.Code | string | Security code of the security. |
Accounts.Exclusions.Security.Exchange | string | Exchange code of the security. |
Accounts.InitialInvestment | object | Initial investment of account. |
Accounts.InitialInvestment.Cash | double | Select if the initial investment will include cash. |
Accounts.InitialInvestment.Shares | double | Select if the initial investment will include shares. |
Accounts.InitialInvestment.Methodrequired | enum | ElectronicTransfer = 2, Cheque = 3. |
Accounts.SourceOfFunds | string | Contribution source. |
Accounts.OngoingFeeAmount | double | Ongoing fee amount. |
Accounts.ReinvestIncome | boolean | Reinvest income. |
Accounts.ProductId | string | Product ID. |
Accounts.ProductProviderReference | string | Product provider reference. |
Accounts.RegularContribution | object | Regular cash contributions to the account. |
Accounts.RegularWithdrawal | object | Regular cash withdrawals from the account. |
Accounts.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Accounts.Region | enum | Australia, UnitedKingdom or International. |
Accounts.CurrencyCode | string | The currency code of the account. |
Accounts.AdviserReference | string | Adviser reference.. |
Accounts.InSpecieCashStockTransfers | array | In specie cash stock transfers. |
Accounts.InSpecieCashStockTransfers.TransferTyperequired | enum | StockAndCash = 0, CashOnly = 1. |
Accounts.InSpecieCashStockTransfers.CedingPartyId | string | Ceding party ID. |
Accounts.InSpecieCashStockTransfers.CedingAccountNumber | string | Ceding account number. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails | array | In specie cash stock transfer details. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails.SecurityIsinrequired | string | Security ISIN of stock transfer. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails.Quantity | double | Quantity of stock transfer. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails.BookCost | double | Book cost of stock transfer. |
Accounts.InSpecieCashStockTransfers.CashTransferAmount | double | Cash transfer amount. |
Accounts.InSpecieCashStockTransfers.AmountUsedThisYear | double | Amount used this year. |
Accounts.InSpecieCashStockTransfers.FeeAmount | double | Fee amount. |
Accounts.InSpecieCashStockTransfers.FeePercent | double | Fee percent. |
Accounts.IsTradeFreezeOn | boolean | If a trade freeze is on. |
Accounts.TradeFreezeReason | enum | TransferIn = 0, TransferOut = 1, Incident = 2, Deceased = 3, RemovalOfAdviser = 4, AdviserInstructed = 5, Bespoke = 6. |
Accounts.TradeFreezeNote | string | Trade freeze note. |
Accounts.IllustrationData | object | Illustration data. |
Accounts.IllustrationData.CostsAndCharges | array | Cost and charges. |
Accounts.IllustrationData.CostsAndCharges.Type | enum | OneOffCharges = 0, OngoingCharges = 1, TransactionCharges = 2, IncidentalCharges = 3, ThirdPartyPayment = 4. |
Accounts.IllustrationData.CostsAndCharges.Amount | double | Amount of cost and charge. |
Response Examples
# 200 - OK
{
"ApplicationId": "c1bdac67-39a0-4835-8168-e99f44f01iu7"
}
Response Parameters
Parameter | Type | Description |
---|---|---|
ApplicationId | string | Unique application ID to be used as an application reference. |
POST Individual Applicant & ISA Account - UK
Definition: https://api.onpraemium.com/api/application
This endpoint creates a individual applicant and ISA account in the system.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AdviserId": 123456,
"Applicants": [
{
"ApplicantType": 0,
"IndividualDetails": {
"Title": "Mr",
"FirstName": "John",
"LastName": "Smith",
"Email": "j.smith@example.com",
"Phone": "012489235",
"PhoneOther": "012489235",
"Gender": 1,
"BirthCountryCode": "AUS",
"DualNationality": false,
"UsPerson": true,
"Profession": "Software engineer",
"SourceOfWealth": "Secret source",
"TaxResidences": [
{
"CountryCode": "CAN",
"From": "2020-10-01T00:00:00Z",
"To": "2020-10-01T00:00:00Z",
"Identification": "ui9089",
"NoDocument": false
}
],
"HomeAddress": {
"Addressee": "Yoki individual",
"Street": "123 Test St",
"Postcode": "BR5 4HL",
"Suburb": "Orpington",
"State": "KENT",
"CountryCode": "UK"
},
"MailingAddress": {
"Addressee": "Yoki individual",
"Street": "123 Test St",
"Postcode": "BR5 4HL",
"Suburb": "Orpington",
"State": "KENT",
"CountryCode": "UK"
},
"NationalIdentifier": {
"CountryOfNationality": "USA",
"IdentifierType": 0,
"IdentifierCode": "",
"NoNationalIdentifier": true
},
"ReceiveCommunicationByPost": true,
"IsPoliticallyExposedPerson": true
}
}
],
"Accounts": [
{
"Name": "Miss Jane Smith",
"RegisteredName": "Miss Jane Smith",
"ShortName": "Jane",
"AccountType": 1,
"PdsId": "UK5",
"SourceOfFunds": "Loan",
"AdviserReference": "123123",
"OngoingFeeAmount": 2.5,
"ReinvestIncome": false,
"ProductId": "UK96",
"ProductProviderReference": "Praemium International Limited",
"RegularContribution": {
"Amount": 150.5,
"Method": 3,
"Frequency": 0
},
"RegularWithdrawal": {
"Amount": 120,
"Method": 2,
"Frequency": 0
},
"Region": 2,
"CurrencyCode": "GBP",
"Fees": [
{
"Id": "UK21871",
"Rate": 0,
"Unit": "Dollar"
}
],
"Models": [
{
"Code": "UK0001",
"Proportion": 50
},
{
"Code": "IN0001",
"Proportion": 50
}
],
"BankAccounts": [
{
"SortCode": "12012",
"AccountNumber": "6555555567",
"AccountName": "Jane Smith"
}
],
"Exclusions": [
{
"Code": "UK0002",
"Exchange": "ASX"
}
],
"InitialInvestment": {
"Cash": 132.12,
"Shares": 321.32,
"Method": 0
},
"IllustrationData": {
"CostsAndCharges": [
{
"Type": 0,
"Amount": 123.123
},
{
"Type": 1,
"Amount": 321.123
},
{
"Type": 2,
"Amount": 123.123
}
]
},
"InSpecieCashStockTransfers": [
{
"TransferType": 0,
"CedingPartyId": "UK29821",
"CedingAccountNumber": "123456",
"InSpecieCashStockTransferDetails": [
{
"SecurityIsin": "UK000000ROC4",
"Quantity": 123.123,
"BookCost": 3242.32432
}
]
}
],
"IsTradeFreezeOn": true,
"TradeFreezeReason": 4,
"TradeFreezeNote": "just freeze it"
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AdviserIdrequired | integer | Adviser ID to create the application under. |
OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicantsrequired | array | Objects containing the applicant data. There must be at least one applicant for the request to succeed. The array of objects may contain a mix of Individual and Corporate applicants. |
Applicants.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Applicants.ApplicantType | enum | Individual = 0. |
Applicants.IndividualDetails | object | Used for Individual applicants. |
Applicants.IndividualDetails.CitizenshipCountryCode | string | Citizenship country code. |
Applicants.IndividualDetails.BirthCountryCode | string | Birth country code. |
Applicants.IndividualDetails.HomeAddress | object | Home address of individual applicant. |
Applicants.IndividualDetails.HomeAddress.Addressee | string | Addressee. |
Applicants.IndividualDetails.HomeAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.HomeAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.HomeAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.HomeAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.HomeAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.HomeAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.HomeAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.IndividualDetails.MailingAddress | object | Mailing address of individual applicant. |
Applicants.IndividualDetails.MailingAddress.Addressee | string | Addressee. |
Applicants.IndividualDetails.MailingAddress.Street | string | Address line 1. |
Applicants.IndividualDetails.MailingAddress.Line2 | string | Address line 2. |
Applicants.IndividualDetails.MailingAddress.Line3 | string | Address line 3. |
Applicants.IndividualDetails.MailingAddress.Postcode | string | Postcode of address. |
Applicants.IndividualDetails.MailingAddress.Suburb | string | Suburb of address. |
Applicants.IndividualDetails.MailingAddress.CountryCode | string | Country code of address. |
Applicants.IndividualDetails.MailingAddress.IsRegistered | boolean | Whether address is registered. |
Applicants.IndividualDetails.Genderrequired | enum | Male = 1, Female = 2. |
Applicants.IndividualDetails.UserName | string | User Name of individual applicant. |
Applicants.IndividualDetails.UserId | string | User ID of individual applicant. |
Applicants.IndividualDetails.TaxResidences | array | Applicant's tax residence. |
Applicants.IndividualDetails.TaxResidences.CountryCode | string | Tax residence country code. |
Applicants.IndividualDetails.TaxResidences.From | date-time | From date that applicant held tax residence in that country. |
Applicants.IndividualDetails.TaxResidences.To | date-time | To date that applicant held tax residence in that country. |
Applicants.IndividualDetails.TaxResidences.Identification | string | Tax residence identification. |
Applicants.IndividualDetails.TaxResidences.NoDocument | boolean | If the applicant does not hold a identification document. |
Applicants.IndividualDetails.UsPerson | boolean | Select if applicant is from the US. |
Applicants.IndividualDetails.SourceOfWealth | string | Provide the applicant's source of wealth. |
Applicants.IndividualDetails.Profession | string | Provide the applicant's profession. |
Applicants.IndividualDetails.Title | string | Title: Mr, Mrs, Ms, Miss, Doctor, Lady, Prof and Sir. |
Applicants.IndividualDetails.FirstName | string | First name of individual. |
Applicants.IndividualDetails.LastName | string | Last name of individual. |
Applicants.IndividualDetails.DateOfBirth | date-time | Date of birth of the individual. |
Applicants.IndividualDetails.Email | string | Email address of the individual. |
Applicants.IndividualDetails.Phone | string | Primary contact number of the individual. |
Applicants.IndividualDetails.PhoneOther | string | Other phone of the individual. |
Applicants.IndividualDetails.NationalIdentifier | object | Individual's national identifier. |
Applicants.IndividualDetails.NationalIdentifier.CountryOfNationality | string | Applicant's country of national identifier. |
Applicants.IndividualDetails.NationalIdentifier.IdentifierType | enum | NoDocument = 0, NationalId = 1, Passport = 2, TaxNumber = 3, LEI = 4. |
Applicants.IndividualDetails.NationalIdentifier.IdentifierCode | string | Applicant's national identifier code. |
Applicants.IndividualDetails.ReceiveCommunicationByPost | boolean | If you would like to opt out of electronic communications. |
Applicants.IndividualDetails.IsPoliticallyExposedPerson | boolean | Whether applicant is politically exposed. |
Accounts | array | Array of accounts to be opened with the application. Must be linked to an included applicant. |
Accounts.Name | string | Account name. |
Accounts.RegisteredName | string | Account registered name. |
Accounts.ShortName | string | Account short name. |
Accounts.AccountTyperequired | enum | Isa = 0. |
Accounts.PdsId | string | PDS ID of account. |
Accounts.Fees | array | Account fees. |
Accounts.Fees.Id | string | Fee ID. |
Accounts.Fees.Rate | double | Fee rate. |
Accounts.Fees.Unit | string | Fee unit, dollars or percentage. |
Accounts.Fees.Type | string | Fee type. |
Accounts.Models | array | Account models. |
Accounts.Models.Code | string | Model code. |
Accounts.Models.Proportion | double | Proportion of model. |
Accounts.BankAccounts | array | Bank accounts. |
Accounts.BankAccounts.SortCode | string | Bank account sort code. |
Accounts.BankAccounts.AccountNumber | string | Bank account number. |
Accounts.BankAccounts.AccountName | string | Bank account name. |
Accounts.BankAccounts.Bic | string | Bank identifier code (BIC) of your banking institution. |
Accounts.BankAccounts.Iban | string | International bank account number (IBAN) of your banking institution. |
Accounts.BankAccounts.RoutingNumber | string | Routing number of banking institution. |
Accounts.Exclusions | array | Account exclusions. |
Accounts.Exclusions.Security | object | Security code of the exclusion. |
Accounts.Exclusions.Security.Code | string | Security code of the security. |
Accounts.Exclusions.Security.Exchange | string | Exchange code of the security. |
Accounts.InitialInvestment | object | Initial investment of account. |
Accounts.InitialInvestment.Cash | double | Select if the initial investment will include cash. |
Accounts.InitialInvestment.Shares | double | Select if the initial investment will include shares. |
Accounts.InitialInvestment.Methodrequired | enum | ElectronicTransfer = 2, Cheque = 3. |
Accounts.SourceOfFunds | string | Contribution source. |
Accounts.OngoingFeeAmount | double | Ongoing fee amount. |
Accounts.ReinvestIncome | boolean | Reinvest income. |
Accounts.ProductId | string | Product ID. |
Accounts.ProductProviderReference | string | Product provider reference. |
Accounts.RegularContribution | object | Regular cash contributions to the account. |
Accounts.RegularWithdrawal | object | Regular cash withdrawals from the account. |
Accounts.OwnerAdviserId | integer | Owner adviser ID to create the application under. |
Accounts.Region | enum | Australia, UnitedKingdom or International. |
Accounts.CurrencyCode | string | The currency code of the account. |
Accounts.AdviserReference | string | Adviser reference.. |
Accounts.InSpecieCashStockTransfers | array | In specie cash stock transfers. |
Accounts.InSpecieCashStockTransfers.TransferTyperequired | enum | StockAndCash = 0, CashOnly = 1. |
Accounts.InSpecieCashStockTransfers.CedingPartyId | string | Ceding party ID. |
Accounts.InSpecieCashStockTransfers.CedingAccountNumber | string | Ceding account number. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails | array | In specie cash stock transfer details. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails.SecurityIsinrequired | string | Security ISIN of stock transfer. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails.Quantity | double | Quantity of stock transfer. |
Accounts.InSpecieCashStockTransfers.InSpecieCashStockTransferDetails.BookCost | double | Book cost of stock transfer. |
Accounts.InSpecieCashStockTransfers.CashTransferAmount | double | Cash transfer amount. |
Accounts.InSpecieCashStockTransfers.AmountUsedThisYear | double | Amount used this year. |
Accounts.InSpecieCashStockTransfers.FeeAmount | double | Fee amount. |
Accounts.InSpecieCashStockTransfers.FeePercent | double | Fee percent. |
Accounts.IsTradeFreezeOn | boolean | If a trade freeze is on. |
Accounts.TradeFreezeReason | enum | TransferIn = 0, TransferOut = 1, Incident = 2, Deceased = 3, RemovalOfAdviser = 4, AdviserInstructed = 5, Bespoke = 6. |
Accounts.TradeFreezeNote | string | Trade freeze note. |
Accounts.IllustrationData | object | Illustration data. |
Accounts.IllustrationData.CostsAndCharges | array | Cost and charges. |
Accounts.IllustrationData.CostsAndCharges.Type | enum | OneOffCharges = 0, OngoingCharges = 1, TransactionCharges = 2, IncidentalCharges = 3, ThirdPartyPayment = 4. |
Accounts.IllustrationData.CostsAndCharges.Amount | double | Amount of cost and charge. |
Response Examples
# 200 - OK
{
"ApplicationId": "c1bdac67-39a0-4835-8168-e99f44f01iu7"
}
Response Parameters
Parameter | Type | Description |
---|---|---|
ApplicationId | string | Unique application ID to be used as an application reference. |
GET Application Status
Definition: https://api.onpraemium.com/api/application/{ApplicationId}/status
This endpoint returns the status of the application. This can be used to check which state an application is in, and the awaiting action.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameters - Path Examples
ApplicationId: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
Request Parameters - Path
Parameter | Type | Description |
---|---|---|
ApplicationIdrequired | string | Unique application ID to be used as an application reference. |
Response Examples
# 200 - OK
{
"ApplicationId": "83225a21-1e9e-9ty1-b35a-6f1091c7a434",
"Status": "Submitted",
"AccountsStatus": [
{
"AccountCode": "SMA00400000",
"Status": "ClosureRequested"
}
]
}
Response Parameters
Parameter | Type | Description |
---|---|---|
ApplicationId | string | Unique application ID to be used as an application reference. |
Status | string | Draft / Submitted. |
AccountsStatus | array | Account status. |
AccountsStatus.AccountCode | string | Account code. |
AccountsStatus.Status | enum | Draft = 0, AwaitingSignature = 1, AwaitingApproval = 2, AwaitingFund = 3, Funded = 4, Trading = 5, ClosureRequested = 6, Closed = 7, Deleted = 8. |
Accounts
GET Accounts
Definition: https://api.onpraemium.com/api/accounts
This endpoint returns a list of accounts.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Query Examples
Search: *01
Page: 1
Size: 100
Request Parameter - Query
Parameter | Type | Description |
---|---|---|
Search | string | Account search string. This parameter accepts wildcards (*). |
Page | integer | Page number to return. Default to 1. |
Size | integer | Page size to return. Default to 100 accounts per page. |
Response Examples
# 200 - OK
[
{
"Id": "AU251995",
"Code": "240153Cons",
"Name": "Test account 1",
"ValuationDate": "2020-12-24T00:00:00",
"ConsolidationType": 84,
"AccountType": 0,
"EntityType": 4,
"Status": 0,
"RecalcType": 2,
"RecalcStatus": 0
},
{
"Id": "AU252176",
"Code": "WalshCons",
"Name": "Test account 2",
"ValuationDate": "2019-07-11T00:00:00",
"ConsolidationType": 84,
"AccountType": 0,
"EntityType": 4,
"Status": 0,
"RecalcType": 1,
"RecalcStatus": 1
}
{
"Id": "AU275166",
"Code": "SMA00275165_EXT",
"Name": "Test account 3",
"ValuationDate": "2018-07-30T00:00:00",
"ConsolidationType": 78,
"AccountType": 0,
"EntityType": 4,
"Status": 0,
"RecalcType": 1,
"RecalcStatus": 0
}
]
Response Parameters
Parameter | Type | Description |
---|---|---|
Id | string | Account ID. |
Code | string | Account code. |
Name | string | Account name. |
ValuationDate | string | Account valuation date or asat date. |
ConsolidationType | enum | None = 78, Portfolio = 80, Transaction = 84, FeeGroup = 85, ShareTrader = 86, SuperFund = 87. |
AccountType | enum | Standard = 0, Sma = 1, Smsf = 3, SuperSmaAccumulation = 4, SuperSmaPension = 5. |
EntityType | enum | Individual = 0, Trust = 1, Corporate = 2, Partnership = 3, Superfund = 4, Joint = 5. |
Status | enum | Active = 0, Draft = 1, Closed = 2, Deleted = 3. |
RecalcType | enum | None = 0, Manual = 1, Auto = 2. |
RecalcStatus | enum | OK = 0, Error = 1. |
App Form
GET App Form
Definition: https://api.onpraemium.com/api/appform
This endpoint returns a PDF version of the application form for the specified account. This is a confirmation to the client of the details of their account. The PDF is returned directly as the response.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Query Examples
AccountId: AU400000
Recipient: 0
FormType: 0
Request Parameter - Query
Parameter | Type | Description |
---|---|---|
AccountIdrequired | string | Account ID. |
Recipient | enum | Adviser = 0, Investor = 1 (UK only) |
FormType | enum | Digital = 0, Paper = 1 (UK only) |
Account Model Weightings
GET Account Model Weightings
Definition: https://api.onpraemium.com/api/accountmodelweightings
This endpoint returns the account model weightings for the account.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Query Examples
AccountId: AU400000
Request Parameter - Query
Parameter | Type | Description |
---|---|---|
AccountIdrequired | string | Account ID. |
Response Examples
# 200 - OK
[
{
"ModelCode": "MACAUD",
"Percent": 100.0
}
]
Response Parameters
Parameter | Type | Description |
---|---|---|
ModelCode | string | Model code. |
Percentage | double | Model percentage. |
PUT Account Model Weightings
Definition: https://api.onpraemium.com/api/accountmodelweightings
This endpoint allows you to modify the account model weightings for the account.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AccountId": "AU400000",
"AccountModelWeightings": [
{
"ModelCode": "MACAUD",
"Percent": 100
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AccountIdrequired | string | Account ID. |
RebalanceTyperequired | enum | Floating = 0, Fixed = 1. |
AccountModelWeightingsrequired | array | Account Model Weightings. |
AccountModelWeightings.ModelCode | string | Model code. |
AccountModelWeightings.Percentage | double | Model percentage. |
SSO Login
POST SSO Login
Definition: https://api.onpraemium.com/api/ssologin
This endpoint is to authenticate a user's access to the Praemium API. It returns a URL that contains a one-time security token. By accessing this URL, an authenticated user will be logged in without having to specify the user's credentials again.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"UserId": 1234,
"Application": 0
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
Applicationrequired | enum | The ID of the application the user will be sent to once logged in. Platform = 0, InvestorPortal = 1, AdviserPortal = 2, ApplicationPortal = 3. |
UserIdrequired | integer | The ID of the user to log in. Either UserId or Username is required. |
Response Examples
# 200 - OK
{
"SsoUrl": "https://login.onpraemium.com/useraccount/sso?token=XXXXXX-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-XXXXXXXXXXXXXXXXXX"
}
Response Parameters
Parameter | Type | Description |
---|---|---|
SsoUrl | string | SSO URL. |
Users
GET User
Definition: https://api.onpraemium.com/api/user/{username}
This endpoint returns the user links for the account.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameters - Path Examples
UserName: john_smith
Request Parameters - Path
Parameter | Type | Description |
---|---|---|
UserNamerequired | string | User name. |
Response Examples
# 200 - OK
{
"UserId": 123456
}
Response Parameters
Parameter | Type | Description |
---|---|---|
UserId | integer | User ID. |
Ceding Parties
GET Ceding Parties
Definition: https://api.onpraemium.com/api/cedingparties
This endpoint returns the ceding parties details for the service.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Query Examples
AccountType: 15
Search: ROC
Request Parameter - Query
Parameter | Type | Description |
---|---|---|
AccountType | enum | Isa = 15, Gia = 16. |
Searchrequired | string | Search for Ceding party. |
Response Examples
# 200 - OK (AU response)
[
{
"CedingPartyId": "UK1",
"CedingPartyName": "Test Ceding Party",
"AcceptsElectronicTransfer": true
}
]
Response Parameters
Parameter | Type | Description |
---|---|---|
CedingPartyId | string | Ceding party ID. |
CedingPartyName | string | Ceding party name. |
AcceptsElectronicTransfer | boolean | Ceding party accepts electronic transfers. |
Securities
GET Securities
Definition: https://api.onpraemium.com/api/securities
This endpoint returns the securties details for the service.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Query Examples
Search: BHP
PdsId: AU123
ExchangeType: 1
AllowInternational: true
Request Parameter - Query
Parameter | Type | Description |
---|---|---|
Searchrequired | string | Search term based on security code or security description. |
ExchangeTyperequired | enum | Share = 1, Fund = 2. |
PdsIdrequired | string | PDS ID. |
AllowInternational | boolean | If allowed for International. |
Response Examples
# 200 - OK (AU response)
[
{
"Id": "AU94",
"Code": "BHP",
"Description": "BHP GROUP LIMITED FPO",
"Exchange": "ASX",
"IsAllowedByApl": true
}
]
# 200 - OK (UK response)
[
{
"Id": "UK1000000993",
"Code": "ROC",
"Description": "ROC OIL CO LTD NPV",
"ISIN": "AU000000ROC4",
"Exchange": "LON"
}
]
Response Parameters
Parameter | Type | Description |
---|---|---|
Id | string | Security ID. |
Code | string | Security code. |
Description | string | Description. |
ISIN | string | ISIN of security code. |
Exchange | string | Exchange of security. |
IsAllowedByApl | boolean | Is the security allowed by the Approved Product List. |
SecurityExclusions
GET Security Exclusions
Definition: https://api.onpraemium.com/api/securityexclusions
This endpoint returns security exclusions for the account.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Query Examples
AccountId: AU400000
Request Parameter - Query
Parameter | Type | Description |
---|---|---|
AccountIdrequired | string | Account ID. |
Response Examples
# 200 - OK
[
{
"CreatedDate": "2019-12-09T15:20:00.237",
"Security": {
"Code": "WPL",
"Exchange": "ASX"
}
},
{
"CreatedDate": "2020-01-10T10:13:54.67",
"Security": {
"Code": "S32",
"Exchange": "ASX"
}
}
]
Response Parameters
Parameter | Type | Description |
---|---|---|
CreatedDate | date-time | |
Security | object | |
Security.Code | string | |
Security.Exchange | string |
PUT Security Exclusions
Definition: https://api.onpraemium.com/api/securityexclusions
This endpoint allows you to replace security exclusions for the account.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AccountId": "AU400000",
"SecurityExclusions": [
{
"SecurityId": "AU1"
},
{
"SecurityId": "AU2"
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AccountIdrequired | string | Account ID. |
SecurityExclusions | array | |
SecurityExclusions.SecurityIdrequired | string | Security ID. |
POST Security Exclusions
Definition: https://api.onpraemium.com/api/securityexclusions
This endpoint allows you to add security exclusions for the account.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AccountId": "AU400000",
"SecurityExclusions": [
{
"SecurityId": "AU1"
},
{
"SecurityId": "AU2"
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AccountIdrequired | string | Account ID. |
SecurityExclusions | array | |
SecurityExclusions.SecurityIdrequired | string | Security ID. |
DELETE Security Exclusions
Definition: https://api.onpraemium.com/api/securityexclusions
This endpoint allows you to delete security exclusions for the account.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Query Examples
AccountId: AU400000
SecurityId: AU1
Request Parameter - Query
Parameter | Type | Description |
---|---|---|
AccountIdrequired | string | Account ID. |
SecurityId | string | Security ID. |
SecuritySubstitutions
GET Security Substitutions
Definition: https://api.onpraemium.com/api/securitysubstitutions
This endpoint returns security substitutions for the account.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Query Examples
AccountId: AU400000
Request Parameter - Query
Parameter | Type | Description |
---|---|---|
AccountIdrequired | string | Account ID. |
Response Examples
# 200 - OK
[
{
"CreatedDate": "2021-02-16T16:17:07.61",
"FromSecurity": {
"Code": "SEK",
"Exchange": "ASX"
},
"ToSecurity": {
"Code": "JBH",
"Exchange": "ASX"
}
},
{
"CreatedDate": "2021-02-16T16:17:09.307",
"FromSecurity": {
"Code": "CBA",
"Exchange": "ASX"
},
"ToSecurity": {
"Code": "NAB",
"Exchange": "ASX"
}
}
]
Response Parameters
Parameter | Type | Description |
---|---|---|
CreatedDate | date-time | |
FromSecurity | object | |
FromSecurity.Code | string | |
FromSecurity.Exchange | string | |
ToSecurity | object | |
ToSecurity.Code | string | |
ToSecurity.Exchange | string |
PUT Security Substitutions
Definition: https://api.onpraemium.com/api/securitysubstitutions
This endpoint allows you to replace security substitutions for the account.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AccountId": "AU400000",
"SecurityExclusions": [
{
"FromSecurityId": "AU1",
"ToSecurityId": "AU2"
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AccountIdrequired | string | Account ID. |
SecuritySubstitutions | array | |
SecuritySubstitutions.FromSecurityIdrequired | string | |
SecuritySubstitutions.ToSecurityIdrequired | string |
POST Security Substitutions
Definition: https://api.onpraemium.com/api/securitysubstitutions
This endpoint allows you to add security substitutions for the account.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AccountId": "AU400000",
"SecurityExclusions": [
{
"FromSecurityId": "AU1",
"ToSecurityId": "AU2"
}
]
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AccountIdrequired | string | Account ID. |
SecuritySubstitutions | array | |
SecuritySubstitutions.FromSecurityIdrequired | string | |
SecuritySubstitutions.ToSecurityIdrequired | string |
DELETE Security Substitutions
Definition: https://api.onpraemium.com/api/securitysubstitutions
This endpoint allows you to delete security substitutions for the account.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Query Examples
AccountId: AU400000
FromSecurityId: AU1
ToSecurityId: AU2
Request Parameter - Query
Parameter | Type | Description |
---|---|---|
AccountIdrequired | string | Account ID. |
FromSecurityId | string | Security ID to substitute from. |
ToSecurityId | string | Security ID to substitute to. |
MinimumTradeSize
GET Minimum Trade Size
Definition: https://api.onpraemium.com/api/minimumtradesize
This endpoint returns minimum trade size for the account.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Query Examples
AccountId: AU400000
Request Parameter - Query
Parameter | Type | Description |
---|---|---|
AccountIdrequired | string | Account ID. |
Response Examples
# 200 - OK
{
"Amount": 10.0,
"Percentage": 20.5128,
"Units": 2.0
}
Response Parameters
Parameter | Type | Description |
---|---|---|
Amount | double | |
Percentage | double | |
Units | double |
PATCH Minimum Trade Size
Definition: https://api.onpraemium.com/api/minimumtradesize
This endpoint allows you to update minimum trade size for the account.
Header Examples
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImt...
x-pps-subscription-key: d3e30ecd1ab345...
x-pps-api-version: v1
Header Parameters
Parameter | Type | Description |
---|---|---|
Authorizationrequired | string | OAuth 2.0 access token. |
x-pps-subscription-keyrequired | string | Product subscription key. |
x-pps-api-versionrequired | string | API version of the endpoint. |
Request Parameter - Body Examples
{
"AccountId": "AU400000",
"Amount": 10.0,
"Percentage": 20.5128,
"Units": 2.0
}
Request Parameter - Body
Parameter | Type | Description |
---|---|---|
AccountIdrequired | string | Account ID. |
Amountrequired | double | |
Percentagerequired | double | |
Unitsrequired | double |
Rate Limiting
The Praemium API limits requests made to each Praemium service.
The default is 1000 requests per minute, if you hit the limit the API will return HTTP code 429 (Too many requests). If you genuinely need to make more requests, please speak to our support team.
Response Codes
The Praemium API communicates errors through standard HTTP status codes paired. Generally the following pattern will apply:
400 - Bad Request
{
"Message": "Unexpected character encountered while parsing value: d. Path 'AccountId', line 2, position 23."
}
Next Steps
To get started with the Praemium API, you need to first gain access.
If you are an existing customer, please connect contact with your local relationship manager or support team.
If you are new to Praemium, either as an Advice firm, investment manager or entrepreneur seeking to build a product atop of our platform – please get in touch via the contact page.
The process for gaining access is as follows:
1.) Contact your relationship manager or sales/support team, who will provide you a terms of use document
2.) On acceptance of the terms, a login will be created that allows you to access our Test API and more detailed documentation relevant to your type of subscription
3.) After your successful development and testing, you will be granted access to the Live environment