Skip to main content

Fund List

Get the list of funds

HTTP Request

[GET] /api/v6.1/funds

Query Parameters

Fields

FieldsTypeDescription
idintegerIdentifier
fund_parent_idintegerParent fund identifier
fund_titlestringFund name
lvlintegerFund level
financial_accountstringAccount

Filtering

FieldsSupportTypeDescription
ideq,inintegerIdentifier

Sort

Sort (field)Direction
idasc,desc

Limit & Offset

TypeDescription
LimitintegerNumber of records to retrieve
OffsetintegerNumber of records to skip

Example

HTTP Request

GET api/v6.1/funds?fields=fund_title&filtering[id]=4&limit=1&offset=1 HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json

Status

200 OK

Response

{
"data": [
{
"id": 5,
"fund_title": "TEST FUND API",
}
],
"has_more": false,
"offset": 1,
"limited": 1
}