PortfolioLinkApi

<back to all web services

GetPartnerFee

Requires Authentication
The following routes are available for this service:
All Verbs/fees/partner
GetPartnerFee Parameters:
NameParameterData TypeRequiredDescription
PartnerIdqueryintNo
FeeNamequeryFeeNameNo
FeeName Enum:
Advisory
Platform
FundFee
GetPartnerFeeResponse Parameters:
NameParameterData TypeRequiredDescription
ResultformList<FeeTable>No
FeeTable Parameters:
NameParameterData TypeRequiredDescription
IdformintNo
PartnerIdformintNo
NameformFeeNameNo
SubNameformstringNo
IsDefaultformboolNo
TypeformFeeTypeNo
BracketformList<FeeBracket>No
FeeType Enum:
SlidingScale
Single
FeeBracket Parameters:
NameParameterData TypeRequiredDescription
LowerformdecimalNo
UpperformdecimalNo
RateformdecimalNo

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /fees/partner HTTP/1.1 
Host: api.portfoliolink.co.za 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	partnerId: 0,
	feeName: Advisory
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	result: 
	[
		{
			id: 0,
			partnerId: 0,
			name: Advisory,
			subName: String,
			isDefault: False,
			type: SlidingScale,
			bracket: 
			[
				{
					lower: 0,
					upper: 0,
					rate: 0
				}
			]
		}
	]
}