A REST API to create, view, modify and delete metadata records.
Replace curly brackets {} with appropriate content.
CatalogueServiceConfig for valid values of {catalogue identifier}
WebConfig for valid values of {document type}
The jsonpath of {identifier} from the response payload is
$.id
POST /documents?catalogue={catalogue identifier}
Accept: application/json
Authorization: Basic {Base64 username:password}
Content-Type: application/{document type}+json
{JSON request payload}
GET /documents/{identifier}
Accept: application/json
Authorization: Basic {Base64 username:password}
PUT /documents/{identifier}
Accept: application/json
Authorization: Basic {Base64 username:password}
Content-Type: application/{document type}+json
{JSON request payload}
DELETE /documents/{identifier}
Authorization: Basic {Base64 username:password}