A critical vulnerability was discovered in React Server Components (Next.js). Our Systems Remain Fully Protected. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our Systems Remain Fully Protected. Learn More.
Dec 18, 2020
Apr 16, 2021
Closed, Fixed and tested
1. Create a new profile:
POST: /api/v1.0/profiles
{
"Info":
{
"ZipCode": null
}
}
-> It returns 201 Created with body:
{
"ProfileId": "545db9d4-79f8-49cb-ae63-34ab6ca95647",
.....
"Info": {
"ZipCode": null
}
}
2. Get the newly created profile in step 1:
GET /api/v1.0/profiles/default/545db9d4-79f8-49cb-ae63-34ab6ca95647
-> It returns the profile with info:
{
"ProfileId": "545db9d4-79f8-49cb-ae63-34ab6ca95647",
.....
"Info": {},
}
Expected result:
The Info property should display consistent information.