Experiences

Create user’s profile experience.

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.eyJzdWIiOiIzNDIiLCJzY3AiOiJ1c2VyIiwiYXVkIjpudWxsLCJpYXQiOjE3NjA5NTA0MzksImV4cCI6MTc2MzU0MjQzOSwianRpIjoiNDE2OWY5NmEtMDc5My00NmE3LWFmNDMtMDA0OGQ0ZjEzNzU2In0._7dguLCjMlRVWwq6AAP3zmimU-QW_0mfAxh9kg3YVXw
Host: example.org
Cookie: 

Body

{
  "experience": {
    "role": "Healthcare Specialist",
    "company": "Mills-Sporer",
    "description": "Provident hic assumenda quibusdam.",
    "start_date": "2020-07-20",
    "end_date": "2025-06-23",
    "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/"7ed0dbf0bd05e149f83326da7d512f0e"
cache-control: max-age=0, private, must-revalidate
x-request-id: 94b3126c-7956-4f7e-b1a5-25ed0d59cadf
x-runtime: 0.006300
content-length: 180

Body

{
  "experience": {
    "id": 7,
    "company": "Mills-Sporer",
    "description": "Provident hic assumenda quibusdam.",
    "end_date": "2025-06-23",
    "role": "Healthcare Specialist",
    "start_date": "2020-07-20"
  }
}