Last updated 10 months ago
Was this helpful?
Perform Symitar batch operations.
Symitar eDocs References: ,
Lists all available batch jobs.
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.
{"UserNumberCredentials":{"UserNumber":1995,"Password":"2dfKQYR!TeXJwe"}}
The custom object for NexumAPI request attributes.
{"customFields":{"appId":"glaci"}}
POST /nexum/627/2022.01/batchjobs/listBatchJobs HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 139 { "Credentials": { "UserNumberCredentials": { "UserNumber": 1995, "Password": "2dfKQYR!TeXJwe" } }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
Successful operation.
{ "StatusMessage": "Success", "BatchFileList": { "BatchFileName": [ "NX.MOCK.BATCH.JOB", "NX.MOCK.BATCH.JOB" ] } }
Executes a batch job.
Whether to run the batch job asynchronously.
true
Name of the batch job to execute.
NX.MOCK.BATCH.JOB
POST /nexum/627/2022.01/batchjobs/executeBatchJob HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 182 { "Credentials": { "UserNumberCredentials": { "UserNumber": 1995, "Password": "2dfKQYR!TeXJwe" } }, "Async": true, "JobName": "NX.MOCK.BATCH.JOB", "nxAttributes": { "customFields": { "appId": "glaci" } } }
{ "StatusMessage": "Success", "TokenId": "GdGDhjqkChGFfcdxj93HbMMWZAzdzyfuSVKL0trxTpYr2+VwmbNqvN3IM3SDbsd7q2OLoKZYMnisp13hSU+qww==" }
Retrieves the status of a batch job.
Token ID of the batch job.
GdGDhjqkChGFfcdxj93HbMMWZAzdzyfuSVKL0trxTpYr2+VwmbNqvN3IM3SDbsd7q2OLoKZYMnisp13hSU+qww==
POST /nexum/627/2022.01/batchjobs/getBatchJobStatus HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 240 { "Credentials": { "UserNumberCredentials": { "UserNumber": 1995, "Password": "2dfKQYR!TeXJwe" } }, "TokenId": "GdGDhjqkChGFfcdxj93HbMMWZAzdzyfuSVKL0trxTpYr2+VwmbNqvN3IM3SDbsd7q2OLoKZYMnisp13hSU+qww==", "nxAttributes": { "customFields": { "appId": "glaci" } } }