---
title: set Profile Data (/user/setProfileData)
tags: user, working
---
**URL** : /user/setProfileData
---
**Header**
```
Authorization : "Bearer <Token>"
```
**Request**
```
{
"bio": "I am in",
"name" : "Rahul Kumar",
"phoneNumber" : "9811852788",
"email" : "aD1ww11D12113sfas@asd.com",
"whatsAppActive" : true,
"telegramActive" : false,
"communicateViaWhatsappTelegram" : true,
"sourcingExpertise" : ["linkedIn" , "facebook"],
"recruiterLicense" : ["linkedIn"],
"emailUpdate" : true,
"experience": [
{
"jobProfile" : "SDE",
"company" : "hp",
"currentCompany" : false,
"startMonth" : 1,
"startYear" : 2003,
"endMonth" : 12,
"endYear" : 2018
}
],
"socialMedia" : {
"linkedIn" : ".........",
"instagram" : "............",
"facebook" : "..........."
},
"education": [
{
"degree": ".....",
"college": ".....",
"completionYear" : 2019,
"currentlyPursuing" : null ,
"type" : "Full time",
"boardUniversity" : "board"
}
],
"certificates": [
{
"name": ".....",
"issuedBy" : "DDDD",
"certificationNo" : "jdsgjsk",
"type" : "online",
"completionYear" : 2022 ,
"currentlyPursuing" : true
}
]
}
```
**Description**
Make Sure that you pass array object with all required parms [for certificates,education,experience]
---
**Header**
```
```
**Response**
```
{
"meta": {
"code": 200,
"message": "Success!",
"isError": false
},
"data": {
"dataUpdated": true
}
}
```
**Description**