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.eyJzdWIiOiIzNDciLCJzY3AiOiJ1c2VyIiwiYXVkIjpudWxsLCJpYXQiOjE3NjA5NTA0MzksImV4cCI6MTc2MzU0MjQzOSwianRpIjoiMmQ1OWFjOTQtYmYwNi00ZDk4LWJiY2YtZTgzNzNlMTcwNTRlIn0.eqlyXV99H9gqi9HNVcdEkoNKYofnvxwTwhdZRDb3_YU
Host: example.org
Cookie:
Body
{
"experience": {
"role": "Product Analyst",
"company": "Schmeler LLC",
"description": "Ipsa laboriosam ad occaecati.",
"start_date": "2018-01-15",
"end_date": "2025-06-15"
}
}
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/"a2f2fd332a2da891af0f3641493ba6a5"
cache-control: max-age=0, private, must-revalidate
x-request-id: 6249f5e2-f184-448e-8283-3afe2fdc3356
x-runtime: 0.007350
content-length: 170
Body
{
"experience": {
"id": 10,
"company": "Schmeler LLC",
"description": "Ipsa laboriosam ad occaecati.",
"end_date": "2025-06-15",
"role": "Product Analyst",
"start_date": "2018-01-15"
}
}