WireUscAudit

Perform various operations on wire U.S. Central (USC) records.

Symitar eDocs References: Coming soon.

Operations

getWireUscAuditInfoSelectFields

post

Retrieves wire USC audit information with selected fields

Authorizations
Body
WireSequenceNumberintegerOptional
WireUscAuditInfoLocatorintegerOptional
Responses
200

Successful operation.

application/json
post
/getWireUscAuditInfoSelectFields
POST /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"
      }
    ]
  }
}

getWireUscAuditInfoPagedListSelectFields

post

Retrieves a paged list of wire USC audit information with selected fields

Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200

Successful operation.

application/json
post
/getWireUscAuditInfoPagedListSelectFields
POST /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"
}

searchWireUscAuditInfoPagedSelectFields

post

Searches for wire USC audit information paged with selected fields

Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200

Successful operation.

application/json
post
/searchWireUscAuditInfoPagedSelectFields
POST /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"
}

updateWireUscAuditInfoByID

post

Updates USC audit information for a wire by ID

Authorizations
Body
WireSequenceNumberintegerOptional
WireUscAuditInfoLocatorintegerOptional
Responses
200

Successful operation.

application/json
post
/updateWireUscAuditInfoByID
POST /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?