/infor-syteline | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
infor-syteline_add_item | Insert a single IDO record (simple shape) |
infor-syteline_delete_item | Delete a single IDO record |
infor-syteline_get_ido_info | Get IDO property metadata |
infor-syteline_invoke_ido_method | Invoke an IDO method |
infor-syteline_list_configurations | List available SyteLine configurations |
infor-syteline_load_collection | Load (query) records from an IDO collection |
infor-syteline_update_collection | Insert, update, or delete IDO records |
infor-syteline_update_item | Update a single IDO record (simple shape) |
infor-syteline_add_item
Insert a single IDO record (simple shape) Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
ido | string | Yes | — | IDO name (e.g. SLItems, SLCustomers) |
Action | integer | Yes | — | Must be 1 (insert) |
Properties | object[] | Yes | — | New record’s property values |
UpdateLocking | string | No | — | Optimistic-locking mode (default Row) |
infor-syteline_delete_item
Delete a single IDO record Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
ido | string | Yes | — | IDO name (e.g. SLItems, SLCustomers) |
itemId | string | Yes | — | Record identity from the load tool (_ItemId) |
infor-syteline_get_ido_info
Get IDO property metadata Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
ido | string | Yes | — | IDO name (e.g. SLItems, SLCustomers, UserNames) |
infor-syteline_invoke_ido_method
Invoke an IDO method Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
ido | string | Yes | — | IDO name the method belongs to |
method | string | Yes | — | IDO method name to invoke |
body | string[] | Yes | — | Method parameter values in positional order (use empty string for output-only parameters) |
infor-syteline_list_configurations
List available SyteLine configurations Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
configGroup | string | No | — | Configuration group name. Use to list only the members of the specified configuration group. |
infor-syteline_load_collection
Load (query) records from an IDO collection Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
ido | string | Yes | — | IDO name (e.g. SLItems, SLCustomers, UserNames) |
properties | string | Yes | — | Comma-delimited property (field) list to return. Provide ’*’ to include all properties except subcollections. Use the IDO info tool to discover property names. Example: ‘Item,Description,UnitCost’ |
filter | string | No | — | SQL WHERE filter string. Example: Item LIKE ‘ABC%’ or CustNum = ‘1001’ |
orderBy | string | No | — | SQL ORDER BY value. Example: ‘Item DESC’ |
recordCap | integer | No | — | Row cap: -1 = Mongoose default; 0 = unlimited. Use small caps (e.g. 50) to limit large result sets. |
distinct | boolean | No | — | Apply the SQL DISTINCT keyword |
clm | string | No | — | Custom Load Method name |
clmParam | string | No | — | Comma-separated Custom Load Method parameters |
loadType | string | No | — | Load type for paged reads |
bookmark | string | No | — | Pagination cursor (Bookmark) returned by a previous load; combine with loadType=NEXT |
pqc | string | No | — | Post Query Command name |
readOnly | boolean | No | — | If true, no ItemId is returned with the query |
infor-syteline_update_collection
Insert, update, or delete IDO records Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
ido | string | Yes | — | IDO name |
refresh | boolean | No | — | Refresh after update flag — returns the saved records in RefreshItems |
Changes | object[] | No | — | Record changes to apply |
CustomDelete | string | No | — | Custom delete method name (optional) |
CustomInsert | string | No | — | Custom insert method name (optional) |
CustomUpdate | string | No | — | Custom update method name (optional) |
IDOName | string | No | — | IDO name (same as the path parameter) |
RefreshAfterSave | boolean | No | — | Return saved records after the update |
infor-syteline_update_item
Update a single IDO record (simple shape) Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
ido | string | Yes | — | IDO name (e.g. SLItems, SLCustomers) |
Action | integer | Yes | — | Must be 2 (update) |
ItemId | string | Yes | — | Record identity from the load tool (_ItemId) |
Properties | object[] | Yes | — | Changed property values (set Modified: true) |
UpdateLocking | string | No | — | Optimistic-locking mode (default Row) |

