TMC_EDIT_ACTION_DATES_INTERFACE
This method allows editing the dates and responsible parties of an action referring to an action plan through a REST web service.
POST /apigateway/se/generic/gn_webservice/gn_webservice_execute.php
Query parameters:
Query parameters | Type | Required | Description |
---|---|---|---|
cdprod | Numeric | Yes. | Product codeConstant value: 174 |
classname | String | Yes. | Name of the class used in WADLConstant value: tmc_edit_action_dates_interface |
classpath | String | Yes. | Path to the class used in WADLConstant value: tmc_import |
Supported attributes:
Name | Required | Description |
---|---|---|
ActionPlanID | Yes | ID # of the action plan to which the action belongs. |
ActionID | Yes | Action ID #. |
RespID | Yes | ID of the user responsible for the execution (Who?). |
DtPlanStart | Planned start date (When?), in YYYY-MM-DD format. | |
TmPlanStart | Planned start time (When?), in HH:MM format. | |
DtPlanEnd | Planned end date (When?), in YYYY-MM-DD format. | |
TmPlanEnd | Planned end time (When?), in HH:MM format. |
Request example:
{
"ActionPlanID": "string",
"ActionID": "string",
"RespID": "string",
"DtPlanStart": "YYYY-MM-DD",
"TmPlanStart": "HH:MM",
"DtPlanEnd": "YYYY-MM-DD",
"TmPlanEnd": "HH:MM"
}
Response example:
200 OK
{
"success": true,
"total": 1,
"results": [
{
"Result": true,
"Code": 1
}
]
}