OBJECTIVE
This method allows inserting objectives through a REST API.
POST /apigateway/se/rest/v1/project/objective
Request example:
Request body parameter | Type | Required | Description |
---|---|---|---|
idObjective | String | No | ID # |
nmObjective | String | Yes | Name |
dsObjective | String | No | Description |
Request example:
{
"idObjective": "string",
"nmObjective": "string",
"dsObjective": "string"
}
Response example:
200 OK
{
"success": true,
"total": 1,
"results": [
{
"Result": true,
"Code": 1
}
]
}