POST _api/AMTAPI/ModifyProject
Request Information
URI Parameters
None.
Body Parameters
PrjParam| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| UserName | string |
Required |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| Estimate | decimal number |
None. |
|
| Resources | integer |
None. |
|
| TLIA | integer |
None. |
|
| PreNotify | boolean |
None. |
|
| NotificationFreq | integer |
None. |
|
| Subject | string |
None. |
|
| MailContent | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"UserName": "sample string 2",
"StartDate": "2025-10-28T11:12:31.7309083-05:00",
"EndDate": "2025-10-28T11:12:31.7309083-05:00",
"Estimate": 5.0,
"Resources": 6,
"TLIA": 7,
"PreNotify": true,
"NotificationFreq": 9,
"Subject": "sample string 10",
"MailContent": "sample string 11"
}
application/xml, text/xml
Sample:
<PrjParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AMTAPI.Models"> <EndDate>2025-10-28T11:12:31.7309083-05:00</EndDate> <Estimate>5</Estimate> <Id>1</Id> <MailContent>sample string 11</MailContent> <NotificationFreq>9</NotificationFreq> <PreNotify>true</PreNotify> <Resources>6</Resources> <StartDate>2025-10-28T11:12:31.7309083-05:00</StartDate> <Subject>sample string 10</Subject> <TLIA>7</TLIA> <UserName>sample string 2</UserName> </PrjParam>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.