GET api/NaturalBehavior/GetUniqueStyleandDescription/{PersonID}/{LanguageID}
This endpoint is to retrieve BehaviorTypeID and BehaviorTypeDescription as per the Person ID available for Natural Behavior Discovery.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
PersonID |
PersonID is a unique identifier to get Unique Style and it's Description. |
globally unique identifier |
This is a required parameter |
LanguageID |
LanguageID is a unique identifier to get the Behavior Type Description for a particular language |
byte |
This is a required parameter |
Body Parameters
None
Response Information
Resource Description
BehaviorTypeID, BehaviorTypeName and BehaviorTypeDescription as per the Person ID available for Natural Behavior Discovery.
Name | Description | Type | Additional information |
---|---|---|---|
PersonID |
PersonID is a unique identifier to get 12 Business DNA Workplace Insights. |
globally unique identifier |
None |
CreditID |
This field is for the person's Credit ID. |
integer |
None |
BehaviorTypeID |
BehaviorTypeID is a behaviour style ID for a particular Person. |
integer |
None |
BehaviorTypeName |
BehaviorTypeName is a behaviour style name for a particular Person. |
string |
None |
BehaviorTypeDescription |
BehaviorTypeDescription is a behaviour style description for a particular Person. |
string |
None |
Response Formats
application/json, text/json
{ "PersonID": "cd59206e-578d-4857-bf05-266101c2ebc3", "CreditID": 1, "BehaviorTypeID": 1, "BehaviorTypeName": "sample string 2", "BehaviorTypeDescription": "sample string 3" }
application/xml, text/xml
<UniqueStyleAndDescription xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DnaBehavior.WebApi.Models"> <BehaviorTypeDescription>sample string 3</BehaviorTypeDescription> <BehaviorTypeID>1</BehaviorTypeID> <BehaviorTypeName>sample string 2</BehaviorTypeName> <CreditID>1</CreditID> <PersonID>cd59206e-578d-4857-bf05-266101c2ebc3</PersonID> </UniqueStyleAndDescription>