POST api/CADASTRO_PROCESSO/Create
Request Information
URI Parameters
None.
Body Parameters
CADASTRO_PROCESSO| Name | Description | Type | Additional information |
|---|---|---|---|
| PROCESSOID | globally unique identifier |
None. |
|
| DESCRITIVO | string |
None. |
|
| FINALIDADE | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PROCESSOID": "b5c613cb-8377-4c0e-890c-f86dce0a43c8",
"DESCRITIVO": "sample string 2",
"FINALIDADE": "sample string 3"
}
text/plain
Sample:
{"PROCESSOID":"b5c613cb-8377-4c0e-890c-f86dce0a43c8","DESCRITIVO":"sample string 2","FINALIDADE":"sample string 3"}
application/xml, text/xml
Sample:
<CADASTRO_PROCESSO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Robotizei.RBT_MONITOR.Domain.Entities"> <DESCRITIVO>sample string 2</DESCRITIVO> <FINALIDADE>sample string 3</FINALIDADE> <PROCESSOID>b5c613cb-8377-4c0e-890c-f86dce0a43c8</PROCESSOID> </CADASTRO_PROCESSO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DataResultModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Detail | string |
None. |
|
| Total | integer |
None. |
|
| ID_OBJECT | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Detail": "sample string 3",
"Total": 4,
"ID_OBJECT": "5eff9791-bcf1-49f0-9fea-d5e094cff27b"
}
text/plain
Sample:
{"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"5eff9791-bcf1-49f0-9fea-d5e094cff27b"}
application/xml, text/xml
Sample:
<DataResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Robotizei.RBT_MONITOR.Domain.Model"> <Detail>sample string 3</Detail> <ID_OBJECT>5eff9791-bcf1-49f0-9fea-d5e094cff27b</ID_OBJECT> <Message>sample string 2</Message> <Success>true</Success> <Total>4</Total> </DataResultModel>