FindByService

Find accounts based on various search methods.

Symitar eDocs References: SymXchange FindBy Service

Operations

findByActiveCard

post

Finds an account by active card.

Authorizations
Body
CardNumberstringRequired

The card number used to search for accounts.

Example: 1234567890123456
Responses
200

Successful operation.

application/json
post
/findByActiveCard
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"
    }
  }
}
200

Successful operation.

{
  "AccountNumber": 13824
}

findByAnyCard

post

Finds an account by any card.

Authorizations
Body
CardNumberstringRequired

The card number used to search for accounts.

Example: 1234567890123456
Responses
200

Successful operation.

application/json
post
/findByAnyCard
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"
    }
  }
}
200

Successful operation.

{
  "AccountNumber": [
    "0000013824",
    "0000013826"
  ]
}

findByHomeUser

post

Finds an account by home user.

Authorizations
Body
HomeBankingUserNamestringRequired

The home banking user used to search for accounts.

Example: john_doe
Responses
200

Successful operation.

application/json
post
/findByHomeUser
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"
    }
  }
}
200

Successful operation.

{
  "AccountNumber": 13824
}

findByMICR

post

Finds an account by MICR.

Authorizations
Body
MICRstringRequired

The Magnetic Ink Character Recognition (MICR) number used to search for accounts.

Example: 12345678
DraftstringRequired

The draft number used to search for accounts.

Example: 987654321
Responses
200

Successful operation.

application/json
post
/findByMICR
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"
    }
  }
}
200

Successful operation.

{
  "Result": {
    "AccountNumber": "0000013826",
    "Id": "0020",
    "IdType": "SHARE"
  }
}

findByLookup

post

Finds an account by lookup.

Authorizations
Body
LookupTypeintegerRequired

The type of lookup used to search for accounts.

Example: 0
LookupNumberstringRequired

The lookup number used to search for accounts.

Example: TESTING
Responses
200

Successful operation.

application/json
post
/findByLookup
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"
    }
  }
}
200

Successful operation.

{
  "Result": {
    "AccountNumber": "0000014117",
    "Id": "",
    "IdType": "NONE"
  },
  "customFields": {
    "appId": "glaci"
  }
}

findBySSN

post

Finds an account by SSN.

Authorizations
Body
SSNstringRequired

The Social Security Number (SSN) used to search for accounts.

Example: 849705024
Responses
200

Successful operation.

application/json
post
/findBySSN
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"
    }
  }
}
200

Successful operation.

{
  "AccountNumber": [
    "0000013824",
    "0000013826"
  ]
}

findByShortName

post

Finds an account by short name.

Authorizations
Body
ShortNamestringRequired

The short name used to search for accounts.

Example: John D.
Responses
200

Successful operation.

application/json
post
/findByShortName
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"
    }
  }
}
200

Successful operation.

{
  "AccountNumber": [
    "0000013824",
    "0000013826"
  ]
}

Last updated

Was this helpful?