WireUscAudit
Perform various operations on wire U.S. Central (USC) records.
Operations
Retrieves wire USC audit information with selected fields
Authorizations
Body
WireSequenceNumberintegerOptional
WireUscAuditInfoLocatorintegerOptional
Responses
200
Successful operation.
application/json
post
/getWireUscAuditInfoSelectFieldsPOST /nexum/627/persistent/wire/getWireUscAuditInfoSelectFields HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
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"
}
}
}200
Successful operation.
{
"WireUscAuditInfo": {
"Locator": 1,
"Text": [
{
"EntryId": 1,
"Text": "text"
}
]
}
}Retrieves a paged list of wire USC audit information with selected fields
Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200
Successful operation.
application/json
post
/getWireUscAuditInfoPagedListSelectFieldsPOST /nexum/627/persistent/wire/getWireUscAuditInfoPagedListSelectFields HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
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"
}
}
}200
Successful operation.
{
"WireUscAuditInfo": [
{
"Locator": 1,
"Text": [
{
"EntryId": 1,
"Text": "text"
}
]
}
],
"Token": "text"
}Searches for wire USC audit information paged with selected fields
Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200
Successful operation.
application/json
post
/searchWireUscAuditInfoPagedSelectFieldsPOST /nexum/627/persistent/wire/searchWireUscAuditInfoPagedSelectFields HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
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"
}
}
}200
Successful operation.
{
"WireUscAuditInfo": [
{
"Locator": 1,
"Text": [
{
"EntryId": 1,
"Text": "text"
}
]
}
],
"Token": "text"
}Updates USC audit information for a wire by ID
Authorizations
Body
WireSequenceNumberintegerOptional
WireUscAuditInfoLocatorintegerOptional
Responses
200
Successful operation.
application/json
post
/updateWireUscAuditInfoByIDPOST /nexum/627/persistent/wire/updateWireUscAuditInfoByID HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
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"
}
}
}200
Successful operation.
{
"UpdateStatus": {
"isAllFieldsUpdateSuccess": true,
"FailedUpdateStatus": {
"Record": "text",
"ErrorCode": "text",
"ErrorMessage": "text",
"PrimaryKeyField": [
{
"Name": "text",
"Value": "text"
}
]
}
}
}Last updated
Was this helpful?