WireFiToFiInfo
Perform various operations on wire FI to FI records.
Operations
Retrieve financial institution-to-financial institution information with selected fields
Authorizations
Body
WireSequenceNumberintegerOptional
WireFiToFiInfoLocatorintegerOptional
Responses
200
Successful operation.
application/json
post
/getWireFiToFiInfoSelectFieldsPOST /nexum/627/persistent/wire/getWireFiToFiInfoSelectFields HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 283
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"WireSequenceNumber": 1,
"WireFiToFiInfoLocator": 1,
"SelectableFields": {
"IncludeAllWireFiToFiInfoFields": true,
"WireFiToFiInfoFields": {
"Locator": true,
"Text": [
1
]
}
},
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}200
Successful operation.
{
"WireFiToFiInfo": {
"Locator": 1,
"Text": [
{
"EntryId": 1,
"Text": "text"
}
]
}
}Retrieve paged financial institution-to-financial institution information with selected fields
Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200
Successful operation.
application/json
post
/getWireFiToFiInfoPagedListSelectFieldsPOST /nexum/627/persistent/wire/getWireFiToFiInfoPagedListSelectFields HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 351
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"WireSequenceNumber": 1,
"PagingRequestContext": {
"NumberOfRecordsToReturn": 1,
"NumberOfRecordsToSkip": 1,
"Token": "text"
},
"SelectableFields": {
"IncludeAllWireFiToFiInfoFields": true,
"WireFiToFiInfoFields": {
"Locator": true,
"Text": [
1
]
}
},
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}200
Successful operation.
{
"WireFiToFiInfo": [
{
"Locator": 1,
"Text": [
{
"EntryId": 1,
"Text": "text"
}
]
}
],
"Token": "text"
}Searches for wire financial institution to financial institution information paged with selected fields
Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200
Successful operation.
application/json
post
/searchWireFiToFiInfoPagedSelectFieldsPOST /nexum/627/persistent/wire/searchWireFiToFiInfoPagedSelectFields HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 383
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"WireSequenceNumber": 1,
"PagingRequestContext": {
"NumberOfRecordsToReturn": 1,
"NumberOfRecordsToSkip": 1,
"Token": "text"
},
"SelectableFields": {
"IncludeAllWireFiToFiInfoFields": true,
"WireFiToFiInfoFields": {
"Locator": true,
"Text": [
1
]
}
},
"SearchFilter": {
"Query": "text"
},
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}200
Successful operation.
{
"WireFiToFiInfo": [
{
"Locator": 1,
"Text": [
{
"EntryId": 1,
"Text": "text"
}
]
}
],
"Token": "text"
}Updates wire financial institution to financial institution information by ID
Authorizations
Body
WireSequenceNumberintegerOptional
WireFiToFiInfoLocatorintegerOptional
Responses
200
Successful operation.
application/json
post
/updateWireFiToFiInfoByIDPOST /nexum/627/persistent/wire/updateWireFiToFiInfoByID HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 247
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"WireSequenceNumber": 1,
"WireFiToFiInfoLocator": 1,
"WireFiToFiInfoFields": {
"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?