POST api/FpPlan
Creates FP Period. autocreate - create next week FP Period automatically.
Request Information
URI Parameters
None.
Body Parameters
FpPlanInput| Name | Description | Type | Additional information |
|---|---|---|---|
| autocreate | boolean |
None. |
|
| id | integer |
None. |
|
| date_from | date |
None. |
|
| date_to | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"autocreate": true,
"id": 2,
"date_from": "2025-10-28T20:57:09.6769094+00:00",
"date_to": "2025-10-28T20:57:09.6769094+00:00"
}
application/xml, text/xml
Sample:
<FpPlanInput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <autocreate>true</autocreate> <id>2</id> <date_from>2025-10-28T20:57:09.6769094+00:00</date_from> <date_to>2025-10-28T20:57:09.6769094+00:00</date_to> </FpPlanInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |