Update existing record.
PATCH
/api/records/v1/{name}/{record}
const url = 'https://example.com/api/records/v1/example/example';const options = { method: 'PATCH', headers: {'Content-Type': 'application/json'}, body: '"example"'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PATCH \ --url https://example.com/api/records/v1/example/example \ --header 'Content-Type: application/json' \ --data '"example"'Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”name
required
string
record
required
string
Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
Examplegenerated
exampleResponses
Section titled “Responses”Successful update.