Defect
This method allows inserting defects through a REST API.
POST /apigateway/se/rest/v1/administration/defect
Request example:
| Request body parameter | Type | Required | Description |
|---|---|---|---|
| idDefect | String | Yes | ID # |
| nmDefect | String | Yes | Name |
Request example:
{
"idDefect": "string",
"nmDefect": "string"
}
Response example:
200 OK
{
"success": true,
"total": 1,
"results": [
{
"Result": true,
"Code": 1
}
]
}