WireFiToFiInfo

Perform various operations on wire FI to FI records.

Symitar eDocs References: Coming soon.

Operations

getWireFiToFiInfoSelectFields

post

Retrieve financial institution-to-financial institution information with selected fields

Authorizations
Body
WireSequenceNumberintegerOptional
WireFiToFiInfoLocatorintegerOptional
Responses
200

Successful operation.

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

getWireFiToFiInfoPagedListSelectFields

post

Retrieve paged financial institution-to-financial institution information with selected fields

Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200

Successful operation.

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

searchWireFiToFiInfoPagedSelectFields

post

Searches for wire financial institution to financial institution information paged with selected fields

Authorizations
Body
WireSequenceNumberintegerOptional
Responses
200

Successful operation.

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

updateWireFiToFiInfoByID

post

Updates wire financial institution to financial institution information by ID

Authorizations
Body
WireSequenceNumberintegerOptional
WireFiToFiInfoLocatorintegerOptional
Responses
200

Successful operation.

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