Last updated 10 months ago
Was this helpful?
Perform various operations on wire U.S. Central (USC) records.
Symitar eDocs References: Coming soon.
Retrieves wire USC audit information with selected fields
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/persistent/wire/getWireUscAuditInfoSelectFields HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 289 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "WireSequenceNumber": 1, "WireUscAuditInfoLocator": 1, "SelectableFields": { "IncludeAllWireUscAuditInfoFields": true, "WireUscAuditInfoFields": { "Locator": true, "Text": [ 1 ] } }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
Successful operation.
{ "WireUscAuditInfo": { "Locator": 1, "Text": [ { "EntryId": 1, "Text": "text" } ] } }
Retrieves a paged list of wire USC audit information with selected fields
POST /nexum/627/persistent/wire/getWireUscAuditInfoPagedListSelectFields HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 355 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "WireSequenceNumber": 1, "PagingRequestContext": { "NumberOfRecordsToReturn": 1, "NumberOfRecordsToSkip": 1, "Token": "text" }, "SelectableFields": { "IncludeAllWireUscAuditInfoFields": true, "WireUscAuditInfoFields": { "Locator": true, "Text": [ 1 ] } }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
{ "WireUscAuditInfo": [ { "Locator": 1, "Text": [ { "EntryId": 1, "Text": "text" } ] } ], "Token": "text" }
Searches for wire USC audit information paged with selected fields
POST /nexum/627/persistent/wire/searchWireUscAuditInfoPagedSelectFields HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 387 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "WireSequenceNumber": 1, "PagingRequestContext": { "NumberOfRecordsToReturn": 1, "NumberOfRecordsToSkip": 1, "Token": "text" }, "SelectableFields": { "IncludeAllWireUscAuditInfoFields": true, "WireUscAuditInfoFields": { "Locator": true, "Text": [ 1 ] } }, "SearchFilter": { "Query": "text" }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
Updates USC audit information for a wire by ID
POST /nexum/627/persistent/wire/updateWireUscAuditInfoByID HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 251 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "WireSequenceNumber": 1, "WireUscAuditInfoLocator": 1, "WireUscAuditInfoFields": { "Locator": 1, "Text": [ { "EntryId": 1, "Text": "text" } ] }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
{ "UpdateStatus": { "isAllFieldsUpdateSuccess": true, "FailedUpdateStatus": { "Record": "text", "ErrorCode": "text", "ErrorMessage": "text", "PrimaryKeyField": [ { "Name": "text", "Value": "text" } ] } } }