Available in Classic and VPC
Get an attribute mapper.
For information on how to connect user attribute information from the Ncloud Single Sign-On service with user attribute information set in other services such as AWS and OneLogin, see the Ncloud Single Sign-On user guide.
- Manage user profile
- How to set attribute mapper by service
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET | /api/v1/tenant/saml-idp/profile-mapping |
Request headers
For information about the headers common to all Ncloud Single Sign-On APIs, see Ncloud Single Sign-On request headers.
Request example
The request example is as follows:
curl --location --request GET 'https://sso.apigw.ntruss.com/api/v1/tenant/saml-idp/profile-mapping' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'
Response
This section describes the response format.
Response body
The response body includes the following data:
Field | Type | Required | Description |
---|---|---|---|
firstName |
Object | - | Name information |
firstName.displayName |
String | - | User profile name displayed in the Manage user profile page in the Ncloud Single Sign-On > Tenant menu in the NAVER Cloud Platform console |
firstName.syncMode |
String | - | Attribute information update policy
|
firstName.idpValue |
String | - | Attribute (AttributeName) to be passed to the Single Sign-On service of NAVER Cloud Platform
|
lastName |
Object | - | Last name information |
lastName.displayName |
String | - | User profile name displayed in the Manage user profile page in the Ncloud Single Sign-On > Tenant menu in the NAVER Cloud Platform console |
lastName.syncMode |
String | - | Attribute information update policy
|
lastName.idpValue |
String | - | Attribute (AttributeName) to be passed to the Single Sign-On service of NAVER Cloud Platform
|
email |
Object | - | Email information |
email.displayName |
String | - | User profile name displayed in the Manage user profile page in the Ncloud Single Sign-On > Tenant menu in the NAVER Cloud Platform console |
email.syncMode |
String | - | Attribute information update policy
|
email.idpValue |
String | - | Attribute (AttributeName) to be passed to the Single Sign-On service of NAVER Cloud Platform
|
emailVerified |
Object | - | Email verification information |
emailVerified.displayName |
String | - | User profile name displayed in the Manage user profile page in the Ncloud Single Sign-On > Tenant menu in the NAVER Cloud Platform console |
emailVerified.syncMode |
String | - | Attribute information update policy
|
emailVerified.idpValue |
String | - | Attribute (AttributeName) to be passed to the Single Sign-On service of NAVER Cloud Platform
|
empNo |
Object | - | Employee number information |
empNo.displayName |
String | - | User profile name displayed in the Manage user profile page in the Ncloud Single Sign-On > Tenant menu in the NAVER Cloud Platform console |
empNo.syncMode |
String | - | Attribute information update policy
|
empNo.idpValue |
String | - | Attribute (AttributeName) to be passed to the Single Sign-On service of NAVER Cloud Platform
|
phoneNo |
Object | - | Mobile phone number information |
phoneNo.displayName |
String | - | User profile name displayed in the Manage user profile page in the Ncloud Single Sign-On > Tenant menu in the NAVER Cloud Platform console |
phoneNo.syncMode |
String | - | Attribute information update policy
|
phoneNo.idpValue |
String | - | Attribute (AttributeName) to be passed to the Single Sign-On service of NAVER Cloud Platform
|
phoneNoVerified |
Object | - | Mobile phone number verification information |
phoneNoVerified.displayName |
String | - | User profile name displayed in the Manage user profile page in the Ncloud Single Sign-On > Tenant menu in the NAVER Cloud Platform console |
phoneNoVerified.syncMode |
String | - | Attribute information update policy
|
phoneNoVerified.idpValue |
String | - | Attribute (AttributeName) to be passed to the Single Sign-On service of NAVER Cloud Platform
|
phoneCountryCode |
Object | - | Country code information |
phoneCountryCode.displayName |
String | - | User profile name displayed in the Manage user profile page in the Ncloud Single Sign-On > Tenant menu in the NAVER Cloud Platform console |
phoneCountryCode.syncMode |
String | - | Attribute information update policy
|
phoneCountryCode.idpValue |
String | - | Attribute (AttributeName) to be passed to the Single Sign-On service of NAVER Cloud Platform
|
deptName |
Object | - | Department Information |
deptName.displayName |
String | - | User profile name displayed in the Manage user profile page in the Ncloud Single Sign-On > Tenant menu in the NAVER Cloud Platform console |
deptName.syncMode |
String | - | Attribute information update policy
|
deptName.idpValue |
String | - | Attribute (AttributeName) to be passed to the Single Sign-On service of NAVER Cloud Platform
|
Response status codes
For information about the response status codes common to all Ncloud Single Sign-On APIs, see Ncloud Single Sign-On response status codes.
Response example
The response example is as follows:
{
"firstName": {
"displayName": "First Name",
"syncMode": "import",
"idpValue": "${user:givenName}"
},
"lastName": {
"displayName": "Last Name",
"syncMode": "import",
"idpValue": "${user:familyName}"
},
"email": {
"displayName": "Email",
"syncMode": "import",
"idpValue": "${user:email}"
},
"emailVerified": {
"displayName": "Email Verified",
"syncMode": "import",
"idpValue": ""
},
"empNo": {
"displayName": "Employee Number",
"syncMode": "import",
"idpValue": ""
},
"phoneNo": {
"displayName": "Phone Number",
"syncMode": "import",
"idpValue": ""
},
"phoneNoVerified": {
"displayName": "Phone Number Verified",
"syncMode": "import",
"idpValue": ""
},
"phoneCountryCode": {
"displayName": "Phone Country Code",
"syncMode": "import",
"idpValue": ""
},
"deptName": {
"displayName": "Department",
"syncMode": "import",
"idpValue": ""
}
}