info@selectline.de | +49 391 5555-080 | SelectLine - suits every company
/Macros/{macroFileName}
Description

Returns the results of a macro execution. An entry is required in the APIMACRO table that contains the actual macro to be executed. The name of the macro in the table is required for execution, as well as the values for existing parameters within the macro.

Request

URI Parameters

macroFileName
string
Required
Der Dateiname des auszuführenden Makros.

Body Parameters

Die Werte für die Parameter innerhalb des Makros.

Model: Collection of MacroParameter
Name
string
Name of parameters

Value
string
The value of parameters
Request Formats
application/json
Example:
    [
  {
    "Name": "sample string 1",
    "Value": "sample string 2"
  },
  {
    "Name": "sample string 1",
    "Value": "sample string 2"
  }
]

Response

Resource Description

Model: MacroResult
ColumnNames
Collection of string
List with names of table columns

Rows
Collection of MacroResultRow
Loist with values of table rows

Response Formats
application/json
Example:
    {
  "ColumnNames": [
    "sample string 1",
    "sample string 2"
  ],
  "Rows": [
    {
      "ColumnValues": [
        {},
        {}
      ]
    },
    {
      "ColumnValues": [
        {},
        {}
      ]
    }
  ]
}