Create user’s profile experience.
Experiences
POST create experience
Endpoint
POST /api/v1/experiences
Parameters
Name | Description |
---|---|
experience[profile_id] | Experience profile |
experience[role] required | Experience role |
experience[company] required | Experience company |
experience[description] required | Experience description |
experience[start_date] required | Experience start date |
experience[end_date] | Experience end date |
experience[ongoing] | Experience ongoing |
Request
Route
POST /api/v1/experiences
Headers
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIzNDMiLCJzY3AiOiJ1c2VyIiwiYXVkIjpudWxsLCJpYXQiOjE3NDI0NjQ5MTMsImV4cCI6MTc0NTA1NjkxMywianRpIjoiNmIwNDY2NzEtNGViNi00ZmU1LWIyZmUtZDY2MTIxODhiNTAwIn0.Wem3_zmHV8QmIv4KoNZDi6vlPTSO7UZT1xCpDKRGKyA
Host: example.org
Cookie:
Body
{
"experience": {
"role": "Sales Technician",
"company": "Walter Inc",
"description": "Et tenetur ut vel.",
"start_date": "2019-05-11",
"end_date": "2024-07-24",
"profile_id": 101
}
}
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/"c48b65e3b8f02de7689badae1d25bb42"
cache-control: max-age=0, private, must-revalidate
x-request-id: e1b82b88-ad70-4ffd-aace-e68da56d9739
x-runtime: 0.009341
content-length: 157
Body
{
"experience": {
"id": 7,
"company": "Walter Inc",
"description": "Et tenetur ut vel.",
"end_date": "2024-07-24",
"role": "Sales Technician",
"start_date": "2019-05-11"
}
}