-
Notifications
You must be signed in to change notification settings - Fork 1
Customer Data
Andrew edited this page Sep 12, 2013
·
4 revisions
Fields that contain 'X' values are place holders that mark fields that have no data available. The empty field at the end, again is reserved for the return code. The first field, is the response code, the remainder is the customer account information.
-
- ID // Libary card number.
-
- PIN
-
- PREFEREDNAME // last name first name comma-separated.
-
- STREET
-
- CITY,
-
- PROVINCE,
-
- POSTALCODE,
-
- SEX, // There are only two sexes, there are 9+ genders.
-
- EMAIL,
-
- PHONE,
-
- DOB, // Date of customer's birth in ANSI format: yyyymmdd. Optional, may be empty or 'X'.
-
- PRIVILEGE_EXPIRES, // Date the customer's account expires in ANSI format: yyyymmdd.
-
- RESERVED, // General field can be used for what ever, currently not used so should be 'X'.
-
- ALTERNATE_ID, // Used for fields that can remain empty like 'province' on Horizon. Currently not used so should be 'X'.
-
- ISVALID, // start of flagged fields. This one means the host library has all customer information.
-
- ISMINAGE, // boolean value that denotes if the customer meets the minimum age requirement to have a MeCard.
-
- ISRECIPROCAL, // 'Y' if the customer is a reciprocal member of the library and 'N' otherwise.
-
- ISRESIDENT, // 'Y' if the customer lives in the area the library serves, and 'N' otherwise.
-
- ISGOODSTANDING, // 'Y' if the customer meets the home library's definition of 'in good standing'.
-
- ISLOSTCARD, // 'Y' if this card passes the 'lost card test', and 'N' otherwise. Lost card is detected by the MeLibraries.ca site on login, but can also be set by the home library.
-
- FIRSTNAME, // The customer's first name.
-
- LASTNAME, // The customer's last name.