POST api/FpPlan
Creates FP Period. autocreate - create next week FP Period automatically.
Request Information
URI Parameters
None.
Body Parameters
FpPlanInputName | 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": "2024-11-16T04:45:35.4215351+00:00", "date_to": "2024-11-16T04:45:35.4215351+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>2024-11-16T04:45:35.4215351+00:00</date_from> <date_to>2024-11-16T04:45:35.4215351+00:00</date_to> </FpPlanInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessageName | 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. |