Memulai
Sumber daya inti
Lainnya

Izin untuk Bekerja

Info
Izin untuk Bekerja tersedia di API versi 1 dan 2. Namun, API versi 1 akan dihentikan pada masa mendatang, sehingga integrasi baru sebaiknya menggunakan API versi 2. Permintaan memerlukan cakupan OAuth write.right_to_work.

Deskripsi kolom

Lihat spesifikasi OpenAPI untuk skema lengkap (termasuk bidang opsional).
{
  "id": { "type": "string" }, // (Required) Unique identifier for the data
  "document_type": { "type": "string" }, // (Required) Must be "none"
  "credential_type": { "type": "string" }, // (Required) Must be "right_to_work"
  "data": { // { "type": "object" }, (Required)
    "credential": { // { "type": "object" }, (Required)
      "full_name": { "type": "string" }, // (Required)
      "country": { "type": "string" },  // (Required) 2 character ISO Code for the country
      "singapore_work_rights": { "type": "string" }, // (Optional) Required when country is "SG",
      "partner_chain": { "type": ["array", "null"] } // (Optional unless otherwise specified) Array of objects to specifiy partner institutions, e.g. [{ "name": "Partner Organization" }]
    },
  }
}

Memanfaatkan kolom Izin untuk Bekerja

Rantai mitra

Kolom partner_chain mencatat hubungan perantara dalam hierarki mitra berlapis yang tidak direpresentasikan di bagian lain dalam integrasi. Ini meningkatkan granularitas analitik yang dapat diberikan SEEK Pass kepada Anda.Klik di sini untuk detail lebih lanjut.

Contoh payload

{
  "id": "fa651300-b91a-49cb-8ee7-cac68b3fdf74",
  "document_type": "none",
  "credential_type": "right_to_work",
  "data": {
    "credential": {
      "full_name": "John Doe",
      "country": "SG",
      "singapore_work_rights": "resident"
    }
  }
}