Added
February 15th 2026
7 days ago by Ran Grushkowsky
Added
Introduced a new POST endpoint at /attribute/{user_token} to store global user attributes for a given user.
- Accepts a request body containing
values, an array ofGlobalAttrValueobjects. - Supports an optional
Idempotency-Keyheader to prevent duplicate processing. - Returns 201 on successful creation.
Request (example)
{
"values": [
{
"token": "e2ca24e9-c546-4c64-90d2-cb8e70e7c9ba",
"value": "432532532",
"type": "SocialSecurity"
}
]
}