POST api/Evolution/Post
Post the evolution so it can be created in the system.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| evolutionVm | An evolution viewmodel object. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"StartDate": "02/11/2025 06:03",
"EndDate": "02/11/2025 06:03",
"EndDateType": 2,
"Percentage": 3.0,
"Amount": 4.0,
"ItemID": 5,
"Category": 6,
"Description": "sample string 7",
"Frequency": 8
}
application/xml, text/xml
Sample:
<EvolutionVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CapitalPlanner.API.Models"> <Amount>4</Amount> <Category>6</Category> <Description>sample string 7</Description> <EndDate>2025-11-02T18:03:49.599375+01:00</EndDate> <EndDateType>2</EndDateType> <Frequency>8</Frequency> <ItemID>5</ItemID> <Percentage>3</Percentage> <StartDate>2025-11-02T18:03:49.599375+01:00</StartDate> </EvolutionVM>
application/x-www-form-urlencoded
Sample: