Getting started
Core resources
Other

Right to work

Field descriptions

{
  "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"
    },
  }
}

Sample payload

{
  "id": "1",
  "document_type": "none",
  "credential_type": "right_to_work",
  "data": {
    "credential": {
      "full_name": "John Doe",
      "country": "SG",
      "singapore_work_rights": "resident"
    }
  }
}