Skip to main content
GET
/
resume
/
{resume_id}
/
certification
/
{id}
/
Get certification by id
curl --request GET \
  --url https://api.letraz.app/api/v1/resume/{resume_id}/certification/{id}/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "<string>",
  "resume_section": "<string>",
  "name": "<string>",
  "issuing_organization": "<string>",
  "issue_date": "2023-12-25",
  "credential_url": "<string>",
  "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

id
string
required

Certification ID

resume_id
string
required

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

Response

id
string
required
resume_section
string
required
name
string
required

Name of the certification.

Maximum length: 255
created_at
string<date-time>
required

Timestamp when the certification was first created.

updated_at
string<date-time>
required

Timestamp when the certification was last updated.

user
string
required

The user who owns this certification

issuing_organization
string | null
Maximum length: 255
issue_date
string<date> | null

Date when the certification was issued.

credential_url
string<uri> | null

Link to the certification credential.

Maximum length: 200
I