PATCH
/
resume
/
{resume_id}
/
experience
/
{id}
/
Update an experience
curl --request PATCH \
  --url https://api.letraz.app/api/v1/resume/{resume_id}/experience/{id}/ \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "company_name": "<string>",
  "job_title": "<string>",
  "employment_type": "flt",
  "city": "<string>",
  "started_from_month": 6,
  "started_from_year": 2000,
  "finished_at_month": 6,
  "finished_at_year": 2000,
  "current": true,
  "description": "<string>",
  "user": "<string>",
  "resume_section": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "country": "<string>"
}'
{
  "id": "<string>",
  "user": "<string>",
  "resume_section": "<string>",
  "company_name": "<string>",
  "job_title": "<string>",
  "employment_type": "<string>",
  "city": "<string>",
  "country": "<string>",
  "started_from_month": 6,
  "started_from_year": 2000,
  "finished_at_month": 6,
  "finished_at_year": 2000,
  "current": true,
  "description": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

Experience ID of the experience you want to update

resume_id
string
required

Resume ID of the resume the education belongs to. If you want to interact with the base educations, just put base in here

Body

Response

The response is of type object.