Update user custom data
Update custom data for the given user ID. This method performs a partial update of the custom data object.
Path parameters
-
The unique identifier of the user.
Body Required
-
Partial custom data object to update for the given user ID.
Additional properties are allowed.
PATCH /api/users/{userId}/custom-data
curl \
-X PATCH https://[tenant_id].logto.app/api/users/{userId}/custom-data \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"customData":{}}'
Request examples
{
"customData": {}
}
Response examples (200)
{}