# getContactDetails
Description: get detailed information about the user.
You will receive the result with a notification detailsInfo.
Request example:
{
"method" : "getContactDetails",
"requestId" : "1",
"peerId" : "user1@some.server"
}
Response example:
{
"method" : "getContactDetails",
"requestId" : "1",
"result" : true
}
If peerId
is changed (converted as shown below), the response will contain an additional parameter callId
.
Response example:
{
"method" : "getContactDetails",
"requestId" : "1",
"callId" : "user10@some.server",
"result" : true
}
Parameter description:
peerId
- unique user identifier (TrueConf ID). Applicability:PeerId - supported. Inside the application, it is automatically converted to CallId and the command is then executed with it.
CallId - supported
InstanceId - supported. Inside the application, it is automatically converted to CallId and the command is executed with it.
requestId
- a unique request identifier. You can learn more about it here.callId
- unique user identifier after conversion
See also: