Skip to main content

What are the OneLogin SCIM Attributes and Mappings for Traction Guest

Reg Gray avatar
Written by Reg Gray
Updated over 4 months ago

This knowledge article lists the attributes and mappings for OneLogin that allow you to map your OneLogin users to Traction Guest as hosts. To learn more about the SCIM integration setup, click HERE.

OneLogin Configuration instructions

In OneLogin, select your SCIM application and navigate to the “Configuration” tab. In the “API Connection” section, you will see a textbox labelled as “SCIM JSON Template”. Paste the following JSON in there:

{
"schemas":[
"urn:ietf:params:scim:schemas:core:2.0:User",
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User"
],
"userName":"{$parameters.scimusername}",
"name":{
"givenName":"{$user.firstname}",
"familyName":"{$user.lastname}"
},
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User":{
"organization":"{$user.company}",
"department":"{$parameters.department}"
},
"emails":[
{
"primary":true,
"value":"{$user.email}",
"type":"work"
},
{
"primary":"false",
"value":[
"put value for alternate email here"
],
"type":"other"
}
],
"phoneNumbers":[
{
"primary":true,
"value":[
"put value for primary mobile here"
],
"type":"mobile"
},
{
"primary":false,
"value":[
"put value for alternate mobile here"
],
"type":"work"
}
],
"active":"{$user.status}"
}



Note: This will be a template for the requests that will be sent to our server, i.e. it is a format such that our server will recognize attributes Traction Guest hosts.

Did this answer your question?