PATCH /v1/user-favorites/{entityType}/{entityId}
PATCH/v1/user-favorites/{entityType}/{entityId}
Rename or update an existing favorite (label / secondaryLabel only)
Request Body
| Name | Typ | Beschreibung |
|---|
label | string | |
secondaryLabel | stringnull | |
Pfad-Parameter
| Name | Typ | Beschreibung |
|---|
entityTypeerforderlich | string | |
entityIderforderlich | string | |
Beispiel
curl -X PATCH https://api.codemeta-os.de/v1/user-favorites/{entityType}/{entityId} \
-H "X-Tenant-Id: $TENANT" \
-H "Content-Type: application/json" \
-b cookies.txt \
-d '{
"label": "string",
"secondaryLabel": null
}'
const result = await cm.user-favorites.patch({
"label": "string",
"secondaryLabel": null
});
Antwortcodes
| HTTP |
Bedeutung |
200 |
Default Response |