[Beginner] Curl command for editing a content fragment
I'm using the following curl command to make changes into the content fragment through curl.
curl -i -X PATCH \ 'https://{bucket}.adobeaemcloud.com/adobe/sites/cf/fragments/{fragmentId}' \ -H 'Authorization: Bearer <YOUR_JWT_HERE>' \ -H 'Content-Type: application/json-patch+json' \ -H 'If-Match: string' \ -d '{ "op": "add", "path": " ", "value": "Doe" }' "
according to the Sites API.
However I'm confused regarding the command as I do not know what value do I put in path if my content fragment is at location /content/dam/wknd-shared/en/
where name of the content fragment is custom-author and I want to add "doe" in the property Last Name (lastName in content fragment model) assuming it is blank before. the final output should be as follows.

Please guide me on how to do the same.


