POST
/
resume
/
{resume_id}
/
project
/
curl --request POST \
  --url https://api.letraz.app/api/v1/resume/{resume_id}/project/ \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "skills_used": [
    {
      "name": "<string>",
      "category": "<string>"
    }
  ],
  "category": "<string>",
  "name": "<string>",
  "description": "<string>",
  "role": "<string>",
  "github_url": "<string>",
  "live_url": "<string>",
  "started_from_month": 6,
  "started_from_year": 2000,
  "finished_at_month": 6,
  "finished_at_year": 2000,
  "current": true
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "skills_used": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "category": "<string>",
      "name": "<string>",
      "preferred": true,
      "alias": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "category": "<string>",
          "name": "<string>",
          "preferred": true,
          "created_at": "2023-11-07T05:31:56Z",
          "updated_at": "2023-11-07T05:31:56Z"
        }
      ],
      "updated_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "resume_section": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "resume": "<string>",
    "index": 0,
    "type": "<string>"
  },
  "category": "<string>",
  "name": "<string>",
  "description": "<string>",
  "role": "<string>",
  "github_url": "<string>",
  "live_url": "<string>",
  "started_from_month": 6,
  "started_from_year": 2000,
  "finished_at_month": 6,
  "finished_at_year": 2000,
  "current": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "user": "<string>"
}

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

resume_id
string
required

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

Body

Response

201
application/json

The response is of type object.