curl --request POST \
--url http://localhost:3000/v2/UserPatchRequest \
--header 'Content-Type: application/json' \
--header 'X-Bunker-Token: <api-key>' \
--data '
{
"mode": "login",
"identity": "<string>",
"patch": [
{
"op": "add",
"path": "<string>",
"value": "<unknown>"
}
],
"request_metadata": {}
}
'