Skip to main content
PUT
/
v1
/
search-profile
/
{id}
Update search profile
curl --request PUT \
  --url https://sgjm-api.vohoangphuc.com/v1/search-profile/{id} \
  --header 'Content-Type: application/json' \
  --cookie auth_token= \
  --data '
{
  "salaryMin": 1,
  "salaryMax": 1,
  "highestDegree": "BACHELOR",
  "employmentTypes": [
    "<string>"
  ],
  "country": "<string>",
  "skillTagIds": [
    123
  ]
}
'
{
  "success": true,
  "message": "<string>",
  "data": {
    "profileId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "salaryMin": 123,
    "salaryMax": 123,
    "highestDegree": "<string>",
    "employmentTypes": [
      "<string>"
    ],
    "country": "<string>",
    "companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "skillTagIds": [
      123
    ]
  }
}

Authorizations

auth_token
string
cookie
required

JWE token stored in HttpOnly cookie

Path Parameters

id
string<uuid>
required

Body

application/json
salaryMin
number
Required range: x >= 0
salaryMax
number
Required range: x >= 0
highestDegree
enum<string>
Available options:
BACHELOR,
MASTER,
DOCTORATE
employmentTypes
string[]
Maximum array length: 5
country
string
skillTagIds
integer[]

Response

200 - application/json

Search profile updated

success
boolean
message
string
data
object