Cora Record API Documentation

This document describes the REST API endpoints exposed by the RecordEndpoint class. The API supports operations for creating, reading, updating, deleting, validating, indexing records, and uploading/downloading resources. Although the API supports both XML and JSON, XML examples are used throughout this documentation.

Base URL

The base URL is derived from the incoming HTTP request and internal settings. For example, if your server is hosted at:

http://<host>:<port>/<context>/

then the effective base URL for record endpoints becomes:

{baseUrl}/record/

Similarly, the IIIF URL is built using a setting (e.g., iiifPublicPathToSystem ). If the request includes an X-Forwarded-Proto header, the protocol is adjusted (e.g., from HTTP to HTTPS).

Authentication

All endpoints require an authentication token provided either as a header or query parameter:

  • Header: authToken
  • Query: authToken

If both are provided, the header token is used. (If you run without an authToken, you will be treated as GUEST.)

Supported Media Types (General)

  • Records: XML: application/vnd.uub.record+xml; JSON: application/vnd.uub.record+json
  • Record Lists: XML: application/vnd.uub.recordList+xml; JSON: application/vnd.uub.recordList+json; Browser-friendly: application/xml; qs=0.1
  • Work Orders (for Validation): XML: application/vnd.uub.workorder+xml; JSON: application/vnd.uub.workorder+json
  • File Uploads: multipart/form-data
  • Error Responses: text/plain; charset=utf-8

1. Create Record

Description

Creates a new record of a given type. The record is sent as a top-level XML data group.

Endpoint

POST {baseUrl}/record/{type}

Parameters

  • Path Parameter: type (string) – The type of record to create.
  • Authentication: authToken (Header or Query Parameter)
  • Request Body: An XML document representing the record.

Supported Media Types

  • Consumes: application/vnd.uub.record+xml, application/vnd.uub.record+json
  • Produces: application/vnd.uub.record+xml, application/vnd.uub.record+json; qs=0.9, application/xml; qs=0.1

Request Example (XML)

<record>
  <recordinfo>
    <id>123</id>
    <type>{type}</type>
  </recordinfo>
  <title>Example Record</title>
  <variable1>Value1</variable1>
  <variable2>Value2</variable2>
  <variable3>Value3</variable3>
</record>

Response

  • Status: 201 Created
  • Headers:
    • Location: URI of the newly created record (e.g. {baseUrl}/record/{type}/{id})
    • Content-Type: application/vnd.uub.record+xml
  • Body: The created record in XML format.

Error Handling

Possible errors include 400, 401, 403, 404, 409, or 500, with error messages returned in plain text.

2. Read Record List

Description

Retrieves a list of complete records for a given type. If no filter is provided, a default empty filter is used.

Endpoint

GET {baseUrl}/record/{type}/

Parameters

  • Path Parameter: type (string) – The record type.
  • Query Parameter: filter (string, optional) – An XML string representing filter criteria.

    If omitted, a default filter is used:

    <filter></filter>
  • Authentication: authToken (Header or Query Parameter)

Supported Media Types

  • Produces: application/vnd.uub.recordList+xml, application/vnd.uub.recordList+json; qs=0.9, application/xml; qs=0.1

Response

  • Status: 200 OK
  • Body: A list of complete records in XML format.

Error Handling

Possible errors include 400, 401, 403, 404, 409, or 500, with error messages in plain text.

3. Read Single Record

Description

Retrieves a specific record by its type and identifier.

Endpoint

GET {baseUrl}/record/{type}/{id}

Parameters

  • Path Parameters:
    • type (string) – The record type.
    • id (string) – The record identifier.
  • Authentication: authToken (Header or Query Parameter)

Supported Media Types

  • Produces: application/vnd.uub.record+xml, application/vnd.uub.record+json; qs=0.9, application/xml; qs=0.1

Response

  • Status: 200 OK
  • Body: The requested record in XML format.

Error Handling

Possible errors include 400, 401, 403, 404, 409, or 500, with error messages in plain text.

5. Delete Record

Description

Deletes a specific record.

Endpoint

DELETE {baseUrl}/record/{type}/{id}

Parameters

  • Path Parameters:
    • type (string) – The record type.
    • id (string) – The record identifier.
  • Authentication: authToken (Header or Query Parameter)

Supported Media Types

  • Produces: text/plain; charset=utf-8

Response

  • Status: 200 OK
  • Body: No response body.

Error Handling

Possible errors include 400, 401, 403, 404, 409, or 500, with error messages in plain text.

6. Update Record

Description

Updates an existing record.

Endpoint

POST {baseUrl}/record/{type}/{id}

Parameters

  • Path Parameters:
    • type (string) – The record type.
    • id (string) – The record identifier.
  • Authentication: authToken (Header or Query Parameter)
  • Request Body: An XML document representing the updated record.

Supported Media Types

  • Consumes: application/vnd.uub.record+xml, application/vnd.uub.record+json
  • Produces: application/vnd.uub.record+xml, application/vnd.uub.record+json; qs=0.9, application/xml; qs=0.1

Example Request (XML)

<record>
  <recordinfo>
    <id>123</id>
    <type>{type}</type>
  </recordinfo>
  <title>Updated Record</title>
  <variable1>NewValue1</variable1>
  <variable2>NewValue2</variable2>
  <variable3>NewValue3</variable3>
</record>

Response

  • Status: 200 OK
  • Body: The updated record in XML format.

Error Handling

Possible errors include 400, 401, 403, 404, 409, or 500, with error messages in plain text.

7. Download Resource

Description

Downloads a resource file that is attached to a record.

Endpoint

GET {baseUrl}/record/{type}/{id}/{resourceType}

Parameters

  • Path Parameters:
    • type (string) – The record type.
    • id (string) – The record identifier.
    • resourceType (string) – The type of resource to download.
  • Authentication: authToken (Header or Query Parameter)

Supported Media Types

  • Produces: Binary stream (MIME type depends on the resource, e.g. application/octet-stream)

Response

  • Status: 200 OK
  • Headers:
    • Content-Disposition: Attachment with filename
    • Content-Length: File size
    • Content-Type: MIME type (e.g. application/octet-stream)
  • Body: The binary file stream.

Error Handling

Possible errors include 400, 401, 403, 404, 409, or 500, with error messages in plain text.

8. Upload Resource

Description

Uploads a resource (file) and associates it with a record.

Endpoint

POST {baseUrl}/record/{type}/{id}/{resourceType}

Parameters

  • Path Parameters:
    • type (string) – The record type.
    • id (string) – The record identifier.
    • resourceType (string) – The type of resource to upload.
  • Authentication: authToken (Header or Query Parameter)
  • Request Body: multipart/form-data with a file field named file

Supported Media Types

  • Consumes: multipart/form-data
  • Produces: application/vnd.uub.record+xml, application/vnd.uub.record+json; qs=0.9, application/xml; qs=0.1

Response

  • Status: 200 OK
  • Body: The updated record (including the new resource) in XML format.

Error Handling

Possible errors include 400, 401, 403, 404, 409, or 500, with error messages in plain text.

9. Search Record

Description

Searches for records based on criteria passed in the request.

Endpoint

GET {baseUrl}/searchResult/{searchId}

Parameters

  • Path Parameter: searchId (string) – An identifier for the search.
  • Query Parameter: searchData (string) – An XML string containing search criteria.
  • Authentication: authToken (Header or Query Parameter)

Supported Media Types

  • Produces: application/vnd.uub.recordList+xml, application/vnd.uub.recordList+json; qs=0.9, application/xml; qs=0.1

Response

  • Status: 200 OK
  • Body: A list of records matching the search criteria in XML format.

Error Handling

Possible errors include 400, 401, 403, 404, 409, or 500, with error messages in plain text.

10. Validate Record

Description

Validates a record using a work order format. The work order includes two parts:

  • order – The validation parameters.
  • record – The record data to be validated.

Endpoint

POST {baseUrl}/record/{type}

Parameters

  • Path Parameter: type (string) – The record type to validate (internally mapped to a validation order type).
  • Authentication: authToken (Header or Query Parameter)
  • Request Body: An XML document containing the work order.

Supported Media Types

  • Consumes: application/vnd.uub.workorder+xml, application/vnd.uub.workorder+json
  • Produces: application/vnd.uub.record+xml, application/vnd.uub.record+json; qs=0.9, application/xml; qs=0.1

Example Request (XML)

<workOrder>
  <order>
    <parameter name="validate">true</parameter>
  </order>
  <record>
    <recordinfo>
      <id>123</id>
      <type>{type}</type>
    </recordinfo>
    <title>Record to Validate</title>
    <variable1>Value1</variable1>
    <variable2>Value2</variable2>
    <variable3>Value3</variable3>
  </record>
</workOrder>

Response

  • Status: 200 OK
  • Body: The result of the validation as an XML record.

Error Handling

Possible errors include 400, 401, 403, 404, 409, or 500, with error messages in plain text.

11. Batch Index Records

Description

Starts a batch indexing job for all records of a given type. Optional index settings can be provided; if none are supplied, a default empty settings object is used.

Endpoint

POST {baseUrl}/record/index/{type}

Parameters

  • Path Parameter: type (string) – The type of records to index.
  • Authentication: authToken (Header or Query Parameter)
  • Request Body: An XML document containing index settings. If omitted, a default is used:
    <indexSettings></indexSettings>

Supported Media Types

  • Consumes: application/vnd.uub.record+xml, application/vnd.uub.record+json
  • Produces: application/vnd.uub.record+xml, application/vnd.uub.record+json; qs=0.9, application/xml; qs=0.1

Response

  • Status: 201 Created
  • Headers:
    • Location: URI for the created batch job (e.g. {baseUrl}/record/indexBatchJob/{id})
  • Body: The batch job record in XML format.

Error Handling

Possible errors include 400, 401, 403, 404, 409, or 500, with error messages in plain text.

Getting Started

This section provides a step-by-step workflow to help you quickly start using the API.

Using Guest Mode

If you do not provide an authToken , the API runs in GUEST mode. For example:

GET {baseUrl}/record/person/

This returns data accessible to a guest user.

List All Record Types

To see which record types are available, call the Record Type Listing endpoint:

GET {baseUrl}/recordType

The response might include types such as "person", "publication", "resource", etc.

Search for a Record Type

Use the Search Record endpoint with appropriate search criteria. For example, to search for records of type "person":

GET {baseUrl}/searchResult/search

With the following search data:

<search>
  <criteria>person</criteria>
</search>

This returns records matching the criteria.

Read a Record

After identifying a record from the search results, retrieve its complete details using the Read Single Record endpoint. For example:

GET {baseUrl}/record/person/123

This returns the complete data for the record with id 123 of type "person".

Common Error Responses

  • 400 Bad Request: Input is malformed or conversion errors occurred.
  • 401 Unauthorized: Authentication token is missing or invalid.
  • 403 Forbidden: The authenticated user does not have the necessary permissions.
  • 404 Not Found: The requested record or resource does not exist.
  • 409 Conflict: Conflicts due to record state or duplicate entries.
  • 500 Internal Server Error: An unexpected error occurred.

Notes

  • Content Negotiation: The API uses the Content-Type header to determine the request format and the Accept header for the response format. Although both XML and JSON are supported, XML examples are provided here.
  • Error Handling: Errors are mapped to appropriate HTTP status codes with plain text error messages.
  • File Uploads/Downloads: The API streams binary data for file operations and includes headers for file metadata.
  • Returned Data Variability: The returned data may vary depending on the active user. In many cases, endpoints for fetching data (such as reading records) can be accessed without an authentication token, though authentication may change the data returned.

© 2025 Cora Record API Documentation