© 2026 Clarivate
GET /api/.../statisticalcodes?branchid={branchid}
Return a list of all item statistical codes for an individual branch.
GET /api/.../statisticalcodes?branchid={branchid}&includeEmptyObject=true
Return a list of all item statistical codes for an individual branch. Include the '(none)' entry for a user listbox or combobox.
| Name | Type | Required | Description |
|---|---|---|---|
| branchid | Integer | Yes | Filter by branch Id. |
| includeEmptyObject | Boolean | No | Set to 'true' to return an empty object with StatisticalCodeID set to '0' and Name set to '(none)'. This may be used when populating a listbox for a user selection. Must be used with the branchid parameter. |
[
{
"StatisticalCodeID": 0,
"OrganizationID": 0,
"Description": "(None)"
},
{
"StatisticalCodeID": 10,
"OrganizationID": 3,
"Description": "abc"
},
{
"StatisticalCodeID": 1,
"OrganizationID": 3,
"Description": "Adult/YA Fiction"
}
]
| Code | Description |
|---|---|
| 200 | OK. Success |
| 400 | Bad request |
| 404 | Invalid organization ID |