Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| appId |
The application identifier. |
integer |
None. |
| personId |
The person identifier. |
integer |
None. |
Body Parameters
None.
Response Information
Resource Description
A list of person Aliases.
Collection of Nano.PersonAlias| Name | Description | Type | Additional information |
|---|---|---|---|
| unparsedName |
Gets or sets the Alias. |
string |
None. |
| id |
Gets or sets the person Alias identifier. |
integer |
None. |
| person |
Gets or sets the person identifier. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"unparsedName": "sample String 1",
"id": "2",
"person": "3"
},
{
"unparsedName": "sample String 1",
"id": "2",
"person": "3"
}
]
text/html
Sample:
[{"unparsedName":"sample String 1","id":"2","person":"3"},{"unparsedName":"sample String 1","id":"2","person":"3"}]
application/xml, text/xml
Sample:
<ArrayOfPersonAlias xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<PersonAlias>
<UnparsedName>sample String 1</UnparsedName>
<PersonAliasId>2</PersonAliasId>
<PersonId>3</PersonId>
</PersonAlias>
<PersonAlias>
<UnparsedName>sample String 1</UnparsedName>
<PersonAliasId>2</PersonAliasId>
<PersonId>3</PersonId>
</PersonAlias>
</ArrayOfPersonAlias>
application/vnd.api+json
Sample:
Sample not available.