WireReceiverFiInfo
Perform various operations on wire receiver FI information records.
Operations
Retrieves wire receiver financial institution information with selected fields
Authorizations
Body
WireSequenceNumberintegerOptional
WireReceiverFiInfoLocatorintegerOptional
Responses
200
Successful operation.
application/json
post
POST /nexum/627/persistent/wire/getWireReceiverFiInfoSelectFields HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 295
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"WireSequenceNumber": 1,
"WireReceiverFiInfoLocator": 1,
"SelectableFields": {
"IncludeAllWireReceiverFiInfoFields": true,
"WireReceiverFiInfoFields": {
"Locator": true,
"Text": [
1
]
}
},
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}
200
Successful operation.
{
"WireReceiverFiInfo": {
"Locator": 1,
"Text": [
{
"EntryId": 1,
"Text": "text"
}
]
}
}
Retrieves a paged list of wire receiver financial institution information with selected fields
Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200
Successful operation.
application/json
post
POST /nexum/627/persistent/wire/getWireReceiverFiInfoPagedListSelectFields HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 359
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"WireSequenceNumber": 1,
"PagingRequestContext": {
"NumberOfRecordsToReturn": 1,
"NumberOfRecordsToSkip": 1,
"Token": "text"
},
"SelectableFields": {
"IncludeAllWireReceiverFiInfoFields": true,
"WireReceiverFiInfoFields": {
"Locator": true,
"Text": [
1
]
}
},
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}
200
Successful operation.
{
"WireReceiverFiInfo": [
{
"Locator": 1,
"Text": [
{
"EntryId": 1,
"Text": "text"
}
]
}
],
"Token": "text"
}
Searches for wire receiver financial institution information paged with selected fields
Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200
Successful operation.
application/json
post
POST /nexum/627/persistent/wire/searchWireReceiverFiInfoPagedSelectFields HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 391
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"WireSequenceNumber": 1,
"PagingRequestContext": {
"NumberOfRecordsToReturn": 1,
"NumberOfRecordsToSkip": 1,
"Token": "text"
},
"SelectableFields": {
"IncludeAllWireReceiverFiInfoFields": true,
"WireReceiverFiInfoFields": {
"Locator": true,
"Text": [
1
]
}
},
"SearchFilter": {
"Query": "text"
},
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}
200
Successful operation.
{
"WireReceiverFiInfo": [
{
"Locator": 1,
"Text": [
{
"EntryId": 1,
"Text": "text"
}
]
}
],
"Token": "text"
}
Updates receiver FI information for a wire by ID
Authorizations
Body
WireSequenceNumberintegerOptional
WireReceiverFiInfoLocatorintegerOptional
Responses
200
Successful operation.
application/json
post
POST /nexum/627/persistent/wire/updateWireReceiverFiInfoByID HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 255
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"WireSequenceNumber": 1,
"WireReceiverFiInfoLocator": 1,
"WireReceiverFiInfoFields": {
"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?