-
Notifications
You must be signed in to change notification settings - Fork 8
PATCH Endpoint
goldy4719 edited this page Apr 10, 2026
·
2 revisions
Update the tags or description associated with an existing image.
- Valid JWT token
- Request body must include:
userIdimageIdtags
- Parse and validate the request body.
- Identify the target item using
userIdandimageId. - Update the
tagsattribute in DynamoDB. - Return a success response.
- Tags are fully replaced, not appended.
- Invalid payloads result in a 400 error.