Skip to main content
POST
/
api
/
v1
/
user
/
me
Update User Profile
curl --request POST \
  --url https://vulnix0.com/api/v1/user/me \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '{
  "name": "John",
  "surname": "Doe",
  "company_name": "Cyber Corp",
  "receive_notification": true,
  "profile_picture_url": "https://example.com/avatar.png"
}'
{
  "status": "success",
  "message": "Profile updated successfully"
}

Authorizations

api-key
string
header
required

A unique API Key.

Body

application/json
name
string
Example:

"John"

surname
string
Example:

"Doe"

company_name
string
Example:

"Cyber Corp"

receive_notification
boolean
Example:

true

profile_picture_url
string<uri>

Must end with .png, .jpg, .jpeg, .webp, or .gif

Example:

"https://example.com/avatar.png"

Response

Profile updated successfully

status
string
Example:

"success"

message
string
I