FindByService
Find accounts based on various search methods.
Operations
Finds an account by active card.
The card number used to search for accounts.
1234567890123456Successful operation.
POST /nexum/627/persistent/findby/findByActiveCard HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 154
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"CardNumber": 1234567890123456,
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}Successful operation.
{
"AccountNumber": 13824
}Finds an account by any card.
The card number used to search for accounts.
1234567890123456Successful operation.
POST /nexum/627/persistent/findby/findByAnyCard HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 154
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"CardNumber": 1234567890123456,
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}Successful operation.
{
"AccountNumber": [
"0000013824",
"0000013826"
]
}Finds an account by home user.
The home banking user used to search for accounts.
john_doeSuccessful operation.
POST /nexum/627/persistent/findby/findByHomeUser HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 157
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"HomeBankingUserName": "john_doe",
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}Successful operation.
{
"AccountNumber": 13824
}Finds an account by MICR.
The Magnetic Ink Character Recognition (MICR) number used to search for accounts.
12345678The draft number used to search for accounts.
987654321Successful operation.
POST /nexum/627/persistent/findby/findByMICR HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 158
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"MICR": 12345678,
"Draft": 987654321,
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}Successful operation.
{
"Result": {
"AccountNumber": "0000013826",
"Id": "0020",
"IdType": "SHARE"
}
}Finds an account by lookup.
The type of lookup used to search for accounts.
0The lookup number used to search for accounts.
TESTINGSuccessful operation.
POST /nexum/627/persistent/findby/findByLookup HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 164
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"LookupType": 0,
"LookupNumber": "TESTING",
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}Successful operation.
{
"Result": {
"AccountNumber": "0000014117",
"Id": "",
"IdType": "NONE"
},
"customFields": {
"appId": "glaci"
}
}Finds an account by SSN.
The Social Security Number (SSN) used to search for accounts.
849705024Successful operation.
POST /nexum/627/persistent/findby/findBySSN HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 140
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"SSN": 849705024,
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}Successful operation.
{
"AccountNumber": [
"0000013824",
"0000013826"
]
}Finds an account by short name.
The short name used to search for accounts.
John D.Successful operation.
POST /nexum/627/persistent/findby/findByShortName HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 146
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"ShortName": "John D.",
"nxAttributes": {
"customFields": {
"appId": "glaci"
}
}
}Successful operation.
{
"AccountNumber": [
"0000013824",
"0000013826"
]
}Last updated
Was this helpful?