Information warehouse
This method allows inserting information warehouses through a REST API.
POST /apigateway/se/rest/v1/process/store-information
Request example:
| Request body parameter | Type | Required | Description |
|---|---|---|---|
| idStore | String | No | ID # |
| nmStore | String | Yes | Name |
| dsStore | String | No | Description |
Request example:
{
"idStore": "string",
"nmStore": "string",
"dsStore": "string"
}
Response example:
200 OK
{
"success": true,
"total": 1,
"results": [
{
"Result": true,
"Code": 1
}
]
}