Last updated 10 months ago
Was this helpful?
Perform various operations for Symitar parameters.
Symitar eDocs References: Coming soon.
Retrieve GL category data.
The authorization object required for the operation. Only one credential type is required (if multiple are available) as long as it is configured in SymXchange parameters.
{"AdministrativeCredentials":{"Password":"suwn37834b91&"}}
The custom object for NexumAPI request attributes.
{"customFields":{"appId":"glaci"}}
POST /nexum/627/2022.01/parameter/getGlCategory HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 149 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "GlCategoryGlCategory": 1, "nxAttributes": { "customFields": { "appId": "glaci" } } }
Successful operation.
{ "GlCategory": { "GlCategory": 1, "GlCategoryDescription": "text" } }
Retrieve select fields for GL category data.
POST /nexum/627/2022.01/parameter/getGlCategorySelectFields HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 272 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "GlCategoryGlCategory": 1, "SelectableFields": { "IncludeAllGlCategoryFields": true, "GlCategoryFields": { "GlCategory": true, "GlCategoryDescription": true } }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
Retrieve paged GL category data.
POST /nexum/627/2022.01/parameter/getGlCategoryPagedList HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 218 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "PagingRequestContext": { "NumberOfRecordsToReturn": 1, "NumberOfRecordsToSkip": 1, "Token": "text" }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
{ "GlCategory": [ { "GlCategory": 1, "GlCategoryDescription": "text" } ], "Token": "text" }
Retrieve select fields for a list of GL category data.
POST /nexum/627/2022.01/parameter/getGlCategoryListSelectFields HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 247 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "SelectableFields": { "IncludeAllGlCategoryFields": true, "GlCategoryFields": { "GlCategory": true, "GlCategoryDescription": true } }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
{ "GlCategoryList": { "hasReachedMaximumListSize": true, "GlCategory": [ { "GlCategory": 1, "GlCategoryDescription": "text" } ] } }
Field for selecting various options related to searchglcategoryselectfields
POST /nexum/627/2022.01/parameter/searchGlCategorySelectFields HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 279 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "SelectableFields": { "IncludeAllGlCategoryFields": true, "GlCategoryFields": { "GlCategory": true, "GlCategoryDescription": true } }, "SearchFilter": { "Query": "text" }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
Retrieve select fields for paged GL category data.
POST /nexum/627/2022.01/parameter/getGlCategoryPagedListSelectFields HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 341 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "PagingRequestContext": { "NumberOfRecordsToReturn": 1, "NumberOfRecordsToSkip": 1, "Token": "text" }, "SelectableFields": { "IncludeAllGlCategoryFields": true, "GlCategoryFields": { "GlCategory": true, "GlCategoryDescription": true } }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
Field for selecting various options related to searchglcategorypagedselectfields
POST /nexum/627/2022.01/parameter/searchGlCategoryPagedSelectFields HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 356 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "PagingRequestContext": { "NumberOfRecordsToReturn": 1, "NumberOfRecordsToSkip": 1, "Token": "text" }, "SelectableFields": { "IncludeAllGlCategoryFields": true, "GlCategoryFields": { "GlCategory": true, "GlCategoryDescription": true } }, "Query": "text", "nxAttributes": { "customFields": { "appId": "glaci" } } }
POST /nexum/627/2022.01/parameter/updateGlCategoryByID HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 210 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "GlCategoryGlCategory": 1, "GlCategoryUpdatableFields": { "GlCategoryDescription": "text" }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
{ "UpdateStatus": { "isAllFieldsUpdateSuccess": true, "FailedUpdateStatus": [ { "Record": "text", "ErrorCode": "text", "ErrorMessage": "text", "PrimaryKeyField": [ { "Name": "text", "Value": "text" } ] } ] } }