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.eyJzdWIiOiIzNDIiLCJzY3AiOiJ1c2VyIiwiYXVkIjpudWxsLCJpYXQiOjE3NDg1MTY1MDEsImV4cCI6MTc1MTEwODUwMSwianRpIjoiYTI4MDU2ZGMtMTQ4NC00ZDE5LTkzNjktOWY0ZTAxY2YyN2IxIn0.C8XvzEOl1VGxSnfnDtiXqR8nXLyw2jl_eS619TXE-wg
Host: example.org
Cookie: 

Body

{
  "experience": {
    "role": "Education Associate",
    "company": "Dicki and Sons",
    "description": "Asperiores maiores est et.",
    "start_date": "2020-11-29",
    "end_date": "2025-04-19",
    "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/"d133591a0d3668fb63b423deae374654"
cache-control: max-age=0, private, must-revalidate
x-request-id: 1147b4f3-9f94-45d7-87f7-380783a53d4f
x-runtime: 0.006671
content-length: 172

Body

{
  "experience": {
    "id": 7,
    "company": "Dicki and Sons",
    "description": "Asperiores maiores est et.",
    "end_date": "2025-04-19",
    "role": "Education Associate",
    "start_date": "2020-11-29"
  }
}