POST api/FreezePoints/{projectId}/{isPartial}
Load a freeze point
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| projectId | integer |
Required |
|
| isPartial | boolean |
Required |
Body Parameters
FreezingPointCreateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | string |
String length: inclusive between 0 and 250 |
|
| Description | string |
None. |
|
| FreezePointCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"title": "sample string 1",
"description": "sample string 2",
"freezePointCode": "sample string 3"
}
text/html
Sample:
{"title":"sample string 1","description":"sample string 2","freezePointCode":"sample string 3"}
application/xml, text/xml
Sample:
<FreezingPointCreateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.SubcontractModule.Application.Dtos.Dtos.McaAgg"> <Description>sample string 2</Description> <FreezePointCode>sample string 3</FreezePointCode> <Title>sample string 1</Title> </FreezingPointCreateDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiDataResultOfFpExecutionDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | FpExecutionDto |
None. |
|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Errors | Collection of CustomError |
None. |
|
| Warnings | Collection of string |
None. |
Response Formats
application/json, text/json, text/html
Sample:
Sample not available.