Custom Metadata
Update custom item metadata for a node or preprint
Update an existing custom item metadata record for a node or preprint. Editable fields include language, resource type, and funding information.
patch/custom_item_metadata_records/{guid_id}/
Path parameters
guid_idstring required
The unique identifier (GUID) of the node or preprint.
Request body
Example request
{
"data": {
"type": "custom-item-metadata-records",
"attributes": {
"language": "en",
"resource_type_general": "Dataset",
"funders": [
{
"funder_name": "National Science Foundation",
"funder_identifier": "123456",
"funder_identifier_type": "ROR",
"award_number": "NSF-1234",
"award_uri": "https://nsf.gov/awardsearch/showAward?AWD_ID=1234",
"award_title": "Climate Change Research Grant"
}
]
}
}
}Response
Successfully updated custom item metadata record.