REST APIs
GET
/accessionedlist
/accessioninfo
/accessioninfo_active
/bibmissing
/bibmissing_bydate
/circstoplist
/circstopout
/deaccessioninfo
/deaccessionedlist
/item
/itemloc
/itemstatus
/refiledlist
/retrievalinfo
/retrievedlist
POST w/file payloads
POST w/JSON payloads
/incomingitems
/itemupdates
/itemsbybarcode
/itemloclist
/itemstatuslist
/union_author
/union_callnumber
/union_isbn
/union_issn
/union_lccn
/union_oclc
/union_title
Additional Info
/bibmissing_bydate
URL: https://yourlibrary.caiasoft.com/api/bibmissing_bydate/v1/{accfrom}/{accto}/{collection}/{bibfield}
HTTP Verb: GET
Authorization Required:
Name | Value | Required | Notes |
---|---|---|---|
X-API-Key | string | Yes | send in header |
Parameters:
Name | Value | Required | Notes |
---|---|---|---|
accfrom | date in YYYYMMDD format | Yes | Item Accessed From Date |
accto | date in YYYYMMDD format | Yes | Item Accessed To Date Repeat accfrom date for one day. Field cannot be blank. |
collection | alphanumeric string | Yes | ALL or Collection Code |
bibfield | alphanumeric string | Yes | The following fields are accepted: none title author callnumber itemid Use this parameter for a list of barcodes that are missing the bibfield info for items accessed in the date parameters provided. Example: “title” will return all items that have no title in their bibliographic info. Note that “all” will return items with no bibliographic records or all of the accepted fields blank. |
Return Response:
Name | Value | Notes |
---|---|---|
success | true/false | |
error | string | API format/key errors only. Will only be filled in when success = false |
count | int | Count of accessed items into the date range |
barcodes | array | List of barcodes that are missing the bib field queried |
Examples:
API Call:
https://yourlibrary.caiasoft.com/api/bibmissing_bydate/v1/20200103/20200115/all/title
API Return:
{"success":true,"error":"", "count":28,"barcodes":["35129211489634", "35129011343676", "35129000463956", "35129211489063", "35129211187485", "35129006370528", "35129215229788", "35129217642483", "35129014281444", "35129211187493", "35129211187303", "35129211187105", "35129211187501", "35129211187113", "35129211187311", "35129211187139", "35129211187337", "35129211187535", "35129002424063", "35129003918113", "35129004327249", "35129015599091", "35129211490277", "35129012411985", "35129211187519", "35129211187527", "35129211187121", "35129211187329"]}