Preservation methods, yours plus the shared ones. Read-only.
idintegercodestringdescriptionstringnullablenamestringnullable/preservationscatalog:readPreservation methods, yours plus the shared ones. Read-only.
searchstringnullableFree-text match on code or name.
codestringnullablePartial match on the code.
namestringnullablePartial match on the name.
sortstringnullableComma-separated field:direction pairs, e.g. id:desc. Sortable: code, id, name. id is always added last, so paging is stable.
limitintegerRows to return. Maximum 200.
offsetintegerRows to skip. Maximum 10000: to read further, narrow the filters or page with updated_since.
data, with pagination.curl "https://public-api.nutrasoft.ca/v1/preservations?limit=50" \
-H "Authorization: Bearer $NUTRASOFT_API_KEY"{
"data": [
{
"id": 123,
"code": "SAMPLE-01",
"description": "string",
"name": "Sample name"
}
],
"pagination": {
"limit": 50,
"offset": 0,
"total": 1,
"has_more": false
},
"order": "id:asc"
}/preservations/{preservation_id}catalog:readpreservation_idintegerrequiredThe preservation's id.
data.curl "https://public-api.nutrasoft.ca/v1/preservations/123" \
-H "Authorization: Bearer $NUTRASOFT_API_KEY"{
"data": {
"id": 123,
"code": "SAMPLE-01",
"description": "string",
"name": "Sample name"
}
}