ca-orbus-sapi
Solutions
GET - /odata/solutions
Summary:
Gets a list of solutions
Description:
A list of solutions and their details.
Query Parameters
Name | Type | Description |
---|---|---|
$select | string | Limits the properties returned in the result. |
$expand | string | Indicates the related entities to be represented inline. Allowed expansion properties: Models, CreatedBy, LastModifiedBy. |
$filter | string | Restricts the set of items returned. The maximum number of expressions is 100. The allowed properties are: SolutionId, Name, Models. |
$orderby | string | Specifies the order in which items are returned. The maximum number of expressions is 5. |
$top | integer | Limits the number of items returned from a collection. The maximum value is 50. |
$skip | integer | Excludes the specified number of items of the queried collection from the result. |
$count | boolean | Indicates whether the total count of items within a collection is returned in the result. |
POST - /odata/solutions
Summary:
Creates new Solution.
Description:
Creates a new Solution with a parameter for request.
Body
Description:
Object containing parameters for creating new Solution.
Default value : OrderedMap { "Name": "Solution Name", "Description": "Description", "Color": "Lochmara" }
Example
{
"Name": "Solution Name",
"Description": "Description",
"Color": "Lochmara"
}
PUT - /odata/solutions/{key}
Updates an existing solution.
Parameters
Name | Type | Description |
---|---|---|
key | string | Solution Id. |
body | object | Contains the parameters needed for updating the solution. Default value : OrderedMap { "Name": "Solution Name", "Description": "Description", "Color": "Lochmara" } |
Example
{
"Name": "Solution Name",
"Description": "Description",
"Color": "Lochmara"
}