POST Api/General/setup/Update_current_period
Request Information
URI Parameters
None.
Body Parameters
current_periodName | Description | Type | Additional information |
---|---|---|---|
period_from | integer |
None. |
|
period_to | integer |
None. |
|
description | string |
None. |
|
no_of_month | integer |
None. |
|
start_date | string |
None. |
|
end_date | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "period_from": 1, "period_to": 2, "description": "sample string 3", "no_of_month": 1, "start_date": "sample string 4", "end_date": "sample string 5" }
text/html
Sample:
{"period_from":1,"period_to":2,"description":"sample string 3","no_of_month":1,"start_date":"sample string 4","end_date":"sample string 5"}
application/xml, text/xml
Sample:
<current_period xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BudgetAPI.Models.BudgetDB"> <description>sample string 3</description> <end_date>sample string 5</end_date> <no_of_month>1</no_of_month> <period_from>1</period_from> <period_to>2</period_to> <start_date>sample string 4</start_date> </current_period>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json, text/html
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>