POST accounts/{accountId}/milestoneTypes
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountId | string |
None. |
Body Parameters
MilestoneTypeCreateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountId | integer |
None. |
|
| Name | string |
None. |
|
| IsDuration | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"AccountId": 1,
"Name": "sample string 2",
"IsDuration": true
}
Response Information
Resource Description
MilestoneTypeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| AccountId | integer |
None. |
|
| Name | string |
None. |
|
| IsDuration | boolean |
None. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Id": 1,
"AccountId": 2,
"Name": "sample string 3",
"IsDuration": true
}