Scenario
This method allows inserting scenarios through a REST API.
POST /apigateway/se/rest/v1/portfolio/scenario
Request example:
Request body parameter | Type | Required | Description |
---|---|---|---|
idScenario | String | Yes | ID # |
nmScenario | String | Yes | Name |
dsScenario | String | Yes | Description |
Request example:
{
"idScenario": "string",
"nmScenario": "string",
"dsScenario": "string"
}
Response example:
200 OK
{
"success": true,
"total": 1,
"results": [
{
"Result": true,
"Code": 1
}
]
}