GET restapi/personal/person/extrauserinformation/{personId}/v1

Gets extra user information (if such exists) for a given person If no such field has been configured on the customer site, or if the current user does not have access to see it, a field with empty name and value will be returned. If such a field exists, but no value has been set for the given personId, then a field with the correct name, but empty value will be returned.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
personId

The id of the person we want the extra user information for

integer

Required

Body Parameters

None.

Response Information

Resource Description

A field containing name and value of the extra information field for the given personId. Note that both name and value can be empty

Itsolutions.Itslearning.ItslCore.BusinessLayer.Person.CustomInfo.ExtraUserInformationField
NameDescriptionTypeAdditional information
Name

string

None.

Value

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Name": "",
  "Value": ""
}

application/xml, text/xml

Sample:
<ExtraUserInformationField xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Itsolutions.Itslearning.ItslCore.BusinessLayer.Person.CustomInfo" />