Experiences

Update user’s profile experience.

PUT update experience

Endpoint

PUT /api/v1/experiences/:id

Request

Route

PUT /api/v1/experiences/10

Headers

Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIzMjgiLCJzY3AiOiJ1c2VyIiwiYXVkIjpudWxsLCJpYXQiOjE3Mzc1NTE1NTgsImV4cCI6MTc0MDE0MzU1OCwianRpIjoiNDJlMmZmZWEtMWQ3ZS00MmIxLTg0MjMtMGNiM2RlYTE1MzYwIn0.6KXePOKmy4UMXzEVkLFcUaNBZ12ZJq56Mx5RtoYpwUk
Host: example.org
Cookie: 

Body

{
  "experience": {
    "role": "Administration Producer",
    "company": "Emmerich and Sons",
    "description": "Porro ut cupiditate quod.",
    "start_date": "2016-11-23",
    "end_date": "2024-09-29"
  }
}

Response

Simulated Response

Status

200

Headers

x-frame-options: SAMEORIGIN
x-xss-protection: 0
x-content-type-options: nosniff
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
content-type: application/json; charset=utf-8
vary: Accept, Origin
etag: W/"0570bd9024054d74865022a56e0338f5"
cache-control: max-age=0, private, must-revalidate
x-request-id: 4a45b3ea-b6e2-413c-ad76-4724a40b1ff6
x-runtime: 0.008635
content-length: 179

Body

{
  "experience": {
    "id": 10,
    "company": "Emmerich and Sons",
    "description": "Porro ut cupiditate quod.",
    "end_date": "2024-09-29",
    "role": "Administration Producer",
    "start_date": "2016-11-23"
  }
}