POST api/Evolution
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": "14/03/2025 09:53", "EndDate": "14/03/2025 09:53", "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-03-14T09:53:02.629875+01:00</EndDate> <EndDateType>2</EndDateType> <Frequency>8</Frequency> <ItemID>5</ItemID> <Percentage>3</Percentage> <StartDate>2025-03-14T09:53:02.629875+01:00</StartDate> </EvolutionVM>
application/x-www-form-urlencoded
Sample: