FindByService
Operations
Finds an account by active card.
The card number used to search for accounts.
Successful operation.
The unique 10-digit account number assigned to an account.
The SymXchange operation message identifier.
POST /nexum/627/2022.01/findby/findByActiveCard HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 167
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"CardNumber": "1234567891234567",
"nxAttributes": {
"customFields": {
"appId": "{application-id}"
}
}
}Successful operation.
{
"AccountNumber": null,
"MessageId": "findByActiveCard"
}Finds an account by any card.
The card number used to search for accounts.
Successful operation.
A list of unique 10-digit account numbers.
POST /nexum/627/2022.01/findby/findByAnyCard HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 167
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"CardNumber": "1234567891234567",
"nxAttributes": {
"customFields": {
"appId": "{application-id}"
}
}
}Successful operation.
{
"AccountNumber": [],
"MessageId": "findByAnyCard"
}Finds an account by home user.
The home banking user used to search for accounts.
Successful operation.
The unique 10-digit account number assigned to an account.
POST /nexum/627/2022.01/findby/findByHomeUser HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 166
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"HomeBankingUserName": "Zamora",
"nxAttributes": {
"customFields": {
"appId": "{application-id}"
}
}
}Successful operation.
{
"AccountNumber": null,
"MessageId": "findByHomeUser"
}Finds an account by MICR.
The Magnetic Ink Character Recognition (MICR) number used to search for accounts.
The draft number used to search for accounts.
Successful operation.
POST /nexum/627/2022.01/findby/findByMICR HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 170
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"MICR": "12345678",
"Draft": "123456",
"nxAttributes": {
"customFields": {
"appId": "{application-id}"
}
}
}Successful operation.
{
"Result": {
"AccountNumber": "0000013826",
"IdType": "SHARE",
"Id": "0020"
},
"MessageId": "findByMICR"
}Finds an account by lookup.
The type of lookup used to search for accounts.
The lookup number used to search for accounts.
Successful operation.
The unique 10-digit account number assigned to an account.
POST /nexum/627/2022.01/findby/findByLookup HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 175
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"LookupType": 0,
"LookupNumber": "TESTING",
"nxAttributes": {
"customFields": {
"appId": "{application-id}"
}
}
}Successful operation.
{
"Result": {
"AccountNumber": "0000014117",
"IdType": "NONE",
"Id": null
},
"AccountNumber": null,
"MessageId": "findByLookup"
}Finds an account by SSN.
The Social Security Number (SSN) used to search for accounts.
Successful operation.
A list of unique 10-digit account numbers.
The SymXchange operation message identifier.
POST /nexum/627/2022.01/findby/findBySSN HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 153
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"SSN": "849705024",
"nxAttributes": {
"customFields": {
"appId": "{application-id}"
}
}
}Successful operation.
{
"AccountNumber": [
"0000013824",
"0000013324"
],
"MessageId": "findBySSN"
}Finds an account by short name.
The short name used to search for accounts.
Successful operation.
A list of unique 10-digit account numbers.
The SymXchange operation message identifier.
POST /nexum/627/2022.01/findby/findByShortName HTTP/1.1
Host: naas.ymcu.libum.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 156
{
"Credentials": {
"AdministrativeCredentials": {
"Password": "suwn37834b91&"
}
},
"ShortName": "Zamora",
"nxAttributes": {
"customFields": {
"appId": "{application-id}"
}
}
}Successful operation.
{
"AccountNumber": [
"0000013614",
"0000014113",
"0000013512",
"0000013824",
"0000013324"
],
"MessageId": "findByShortName"
}Last updated
Was this helpful?