Update user’s profile experience.
Experiences
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.eyJzdWIiOiIzNDciLCJzY3AiOiJ1c2VyIiwiYXVkIjpudWxsLCJpYXQiOjE3NTMyNjYxNzcsImV4cCI6MTc1NTg1ODE3NywianRpIjoiODhlYmFhYTMtYTYxNy00NmVlLTkwODMtZDIzYzQxNzhlMGQ5In0.W-_z-_l1ZGc31-dMtqUVkaDy9K4B03BhYiOkvcGF4YI
Host: example.org
Cookie:
Body
{
"experience": {
"role": "Advertising Administrator",
"company": "Conroy-Mills",
"description": "Nisi aut nam perspiciatis.",
"start_date": "2020-12-31",
"end_date": "2024-12-20"
}
}
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/"42b8aa9e1ceae3dfe32e13e906d776ba"
cache-control: max-age=0, private, must-revalidate
x-request-id: 6519b4d0-708c-46eb-8d28-2bf9f0e9d3c8
x-runtime: 0.010869
content-length: 177
Body
{
"experience": {
"id": 10,
"company": "Conroy-Mills",
"description": "Nisi aut nam perspiciatis.",
"end_date": "2024-12-20",
"role": "Advertising Administrator",
"start_date": "2020-12-31"
}
}