GET api/FpPlan?id_id={id_id}&skip={skip}&take={take}
Returns the list of fp periods with filter applied.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id_id |
Get by id |
integer |
None. |
| skip |
Sets the SKIP number of records returned |
integer |
None. |
| take |
Sets the TAKE number records returned |
integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of FpPlanOutput| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| date_from | date |
None. |
|
| date_to | date |
None. |
|
| is_executive_confirmed | boolean |
None. |
|
| is_baf_confirmed | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"date_from": "2025-10-28T20:30:00.9976488+00:00",
"date_to": "2025-10-28T20:30:00.9976488+00:00",
"is_executive_confirmed": true,
"is_baf_confirmed": true
},
{
"id": 1,
"date_from": "2025-10-28T20:30:00.9976488+00:00",
"date_to": "2025-10-28T20:30:00.9976488+00:00",
"is_executive_confirmed": true,
"is_baf_confirmed": true
}
]
application/xml, text/xml
Sample:
<ArrayOfFpPlanOutput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<FpPlanOutput>
<id>1</id>
<date_from>2025-10-28T20:30:00.9976488+00:00</date_from>
<date_to>2025-10-28T20:30:00.9976488+00:00</date_to>
<is_executive_confirmed>true</is_executive_confirmed>
<is_baf_confirmed>true</is_baf_confirmed>
</FpPlanOutput>
<FpPlanOutput>
<id>1</id>
<date_from>2025-10-28T20:30:00.9976488+00:00</date_from>
<date_to>2025-10-28T20:30:00.9976488+00:00</date_to>
<is_executive_confirmed>true</is_executive_confirmed>
<is_baf_confirmed>true</is_baf_confirmed>
</FpPlanOutput>
</ArrayOfFpPlanOutput>