Fund List
Get the list of funds
HTTP Request
[GET] /api/v6/funds
Query Parameters
Fields
| Fields | Type | Description |
|---|---|---|
| id | integer | Identifier |
| fund_parent_id | integer | Parent fund identifier |
| fund_title | string | Fund name |
| lvl | integer | Fund level |
| financial_account | string | Account |
Filtering
| Fields | Support | Type | Description |
|---|---|---|---|
| id | eq,in | integer | Identifier |
Sort
| Sort (field) | Direction |
|:-------------|-----------|
| id | asc,desc |\
Limit & Offset
| | Type | Description |
|:-------|---------|--------------------------|
| Limit | integer | Number of records to retrieve |
| Offset | integer | Number of records to skip |\
Example
HTTP Request
GET api/v6/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
}