CONTROL-TYPE
This method allows inserting control types using a REST API.
POST /apigateway/se/rest/v1/risk/control-type
Request example:
Request body parameter | Type | Required | Description |
---|---|---|---|
idType | String | No | ID # |
nmType | String | Yes | Name |
idTypeOwner | String | No | Upper level type ID # |
idMask | String | No | Mask ID # |
fgEditId | String | No | Is it possible to edit the mask? 1 - Yes, 2 - No |
dsType | String | No | Description |
Insertion request example:
{
"idType": "string",
"nmType": "string",
"idTypeOwner": "string",
"idMask": "1",
"fgEdit": "1",
"dsType": "string"
}
Response example:
200 OK
{
"success": true,
"total": 1,
"results": [
{
"Result": true,
"Code": 1
}
]
}