Vendor Object
Click the links below to view the Vendor Object properties and an example.
id
integer
The vendor ID.
Example:
"id": "1050001"
accountingUnit
integer
The accounting unit code.
Example:
"accountingUnit": "2"
code
string (optional)
The vendor code.
Example:
"code": "ebsco"
vendorName
string (optional)
The vendor's name.
Example:
"vendorName": "Ebsco Subscription Service"
address1
string (optional)
Vendor address 1.
Example:
"address1": "Ebsco Subscription Service Customer Service$PO Box 92901Attn: Order Dept. ( Acct# SF-S-31080-00)$Los Angeles, CA 90009-2901"
address2
string (optional)
Vendor address 2.
Example:
"address2": "Ebsco Accounts Receivable Remit Address$PO BOX 830625$Birmingham, AL 35283"
contact
string (optional)
The vendor contact.
Example:
"contact": "Jane Doe"
string (optional)
The vendor's email address.
Example:
"email": "samplename@sample.com"
phone
string (optional)
The vendor's phone number.
Example:
"phone": "1-800-555-2726 Jane x123 or Jennifer James Ac"
acctNum
string (optional)
The vendor's account number.
Example:
"acctNum": "AB-C-12345-00"
discount
integer (optional)
The vendor discount.
Example:
"discount": "0"
fixedFields
object
(Returns only if requested.)
The fixedFields property contains a map of FixedField objects, which contain fixed-length data fields from the bib record.
Example:
VarFields
Array
(Returns only if requested.)
The varFields property contains a list of VarField objects, which contain variable-length data fields from the bib record.
Example:
See varField Array
The preceding list order reflects the sequence in which the data returns.
Example response for:
https://example-library.edu:443/iii/sierra-api/v6/vendors/?login=iiisierra&limit=10
The example has been truncation to show two records rather than the 10 indicated by the limit parameter in the above URL.
{ "total": 10, "entries": [ { "id": 1050001, "accountingUnit": 2, "code": "ebsco", "vendorName": "Ebsco Subscription Service", "address1": "Ebsco Subscription Service Customer Service$PO Box 92901 Attn: Order Dept. (Acct# SF-S-31080-00)$Los Angeles, CA 90009-2901", "address2": "Ebsco Accounts Receivable Remit Address$PO BOX 830625 $Birmingham, AL 35283", "phone": "1-800-683-2726 Angela x572 or Jennifer Maupin Ac", "acctNum": "SF-S-31080-00", "discount": 0 }, ... { "id": 1050010, "accountingUnit": 2, "code": "india", "vendorName": "India Plaza.com", "address1": "India Plaza.com$4926 Spicewood Springs Rd.$Austin, TX 78759", "address2": "India Plaza.com$4926 Spicewood Springs Rd.$Austin, TX 78759", "email": "ritu.kapoor@indiaplaza.com", "phone": "512-342-9853 Sheila; Ritu ", "discount": 0 } ] }