Accept a mod-approved contribution patch, merging changes into the entity record.
Input
Encoding
application/jsoncontributionPatch
stringat-uri
Required
URI of the contributionPatch record to accept.
Output
Encoding
application/jsonuri
stringat-uri
Required
URI of the updated entity record.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"contributionPatch"
],
"properties": {
"contributionPatch": {
"type": "string",
"format": "at-uri",
"description": "URI of the contributionPatch record to accept."
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "URI of the updated entity record."
}
}
},
"encoding": "application/json"
},
"description": "Accept a mod-approved contribution patch, merging changes into the entity record."
}