For the complete documentation index, see llms.txt. This page is also available as Markdown.

Myinfo Business Scopes

Myinfo Business scopes provide access to entity and personal information about the acting user and the entity they represent.

These scopes are only available to Myinfo Business applications.

Corresponding Myinfo Business data is returned via the Userinfo Endpoint as:

Example

Scope
Data returned in Userinfo Response

entity.basic_profile.name

entity_info.basic_profile.name

{
  "entity_info": {
    "basic_profile": {
      "name": {
        "classification": "C",
        "lastupdated": "2018-01-31",
        "source": "1",
        "value": "ABC LL"
      }
    }
  }
}

user.name

person_info.name

{
  "person_info": {
    "name": {
       "classification": "C",
       "lastupdated": "2019-03-26",
       "source": "1",
       "value": "TAN XIAO HUI"
    }
  }
}

corppass.email

corppass_info.email

corppass_info.email_verified

{
  "corppass_info": {
    "email": "john@corppass.gov.sg",
    "email_verified": true
  }
}

Last updated