Patch an entry
Log in to add to favouritesPATCH/api/management/projects/{projectId}/entries/{entryId}
Parameters
Name | Parameter type | Type | Format | Description |
---|---|---|---|---|
projectId(required) | path | string | - | The project identifier found in the project overview screen of the management console. |
entryId(required) | query | string | uuid | The entry identifier as a 128 bit GUID |
language | path | string[...] | language | A comma separated list of variations to delete |
Responses
Examples
Updating the tagline of an entry using merge patch
PATCH: /api/management/projects/movieDb/entries/71f73a9b-2a13-4d63-bcc1-e8ee5047b01c
CONTENT-TYPE: application/merge-patch+json
{
"tagline": "He's the only kid ever to get into trouble before he was born.",
}
Updating the tagline of an entry using JSON patch
PATCH: /api/management/projects/movieDb/entries/71f73a9b-2a13-4d63-bcc1-e8ee5047b01c
CONTENT-TYPE: application/json-patch+json
{
{ "op": "replace", "path": "/tagline": "He's the only kid ever to get into trouble before he was born."}
}
Remarks
For more information please see: Patching entries