/api/partner/v2/add/requests/career_history) คำขอต้องใช้ write.career_history OAuth scope{
"credential_id": { "type": "string" }, // (Required) Unique identifier for this credential payload
"fields": { // { "type": "object" }, (Required)
"full_name": { "type": "string" }, // (Required)
"employment" : [
{
"organisation": { "type": "string" }, // (Required) Name of the company or employer
"role_classification": { "type": "string" }, // Category or type of the position held
"role_title": { "type": "string" }, // Official job title for the employment period
"start_date": { "type": "string", "format": "date" }, // (Required) Date employment began, Date format: "YYYY-MM"
"end_date": { "anyOf": [ { "type": "string", "format": "date"}, { "type": "null" }] }, // Date employment ended, Date format: "YYYY-MM"
"last_processed_month": { "type": "string", "format": "date" }, // (Required) Most recent month for which employment data was updated, Date format: "YYYY-MM"
}
]
},
"partner_chain": { "type": ["array", "null"] } // (Optional unless otherwise specified) Array of objects to specifiy partner institutions, e.g. [{ "name": "Partner Organization" }]
}หมายเหตุ: ควรระบุ role_classification หรือ role_title อย่างใดอย่างหนึ่งสำหรับแต่ละระเบียนประวัติการทำงาน หากมีข้อมูลดังกล่าว แนะนำให้ระบุทั้งสองรายการเพื่อความชัดเจน แต่หากมีเพียงรายการเดียว ให้กรอกข้อมูลในช่องนั้น หากไม่มีทั้งสองรายการ สามารถเว้นทั้งสองช่องได้
end_date จะไม่แสดง เว้นแต่ last_processed_month จะอยู่หลัง end_dateหมายเหตุ: ฟิลด์วันที่ทั้งหมดต้องใช้รูปแบบ "YYYY-MM" (เช่น "2023-01")
partner_chain ใช้เก็บความสัมพันธ์ระดับกลางในลำดับชั้นพาร์ทเนอร์แบบหลายชั้นที่ไม่ได้แสดงไว้ในส่วนอื่นของการผสานรวม ซึ่งช่วยเพิ่มความละเอียดของการวิเคราะห์ที่ SEEK Pass สามารถมอบให้คุณได้คลิกที่นี่เพื่อดูรายละเอียดเพิ่มเติม{
"credential_id": "fa651300-b91a-49cb-8ee7-cac68b3fdf74",
"fields": {
"full_name": "John Doe",
"employment": [
{
"organisation": "Company A",
"role_classification": "Software Engineer",
"role_title": "Associate Software Engineer",
"start_date": "2020-01",
"end_date": "2022-12",
"last_processed_month": "2023-01"
},
{
"organisation": "Company B",
"role_classification": "Software Engineer",
"role_title": "Senior Software Engineer",
"start_date": "2023-02",
"last_processed_month": "2024-05"
}
]
}
}