# getContactDetails
Description
Get detailed information about the user
You will receive the result with a notification On_detailsInfo
void getContactDetails(string sPeerId)
Parameters
Name | Description |
---|---|
sPeerId | Unique user identifier (TrueConf ID) |
Response example
{
"method" : "getContactDetails",
"requestId" : "1",
"result" : true
}
If peerId
is changed (converted as shown below), the response will contain an additional parameter callId
{
"method" : "getContactDetails",
"requestId" : "1",
"callId" : "user10@some.server",
"result" : true
}
Response Parameters
Name | Description |
---|---|
callId | Unique user identifier after conversion |
requestId | A unique request identifier |
result | A flag indicating whether the request was successful |
See also