GET api/Common/GetExternalAttributes?UserId={UserId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ExternalAttributesDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| AttributeType | string |
None. |
|
| Name | string |
None. |
|
| AttributeValue | string |
None. |
|
| ShortName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"AttributeType": "sample string 1",
"Name": "sample string 2",
"AttributeValue": "sample string 3",
"ShortName": "sample string 4"
},
{
"AttributeType": "sample string 1",
"Name": "sample string 2",
"AttributeValue": "sample string 3",
"ShortName": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfExternalAttributesDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VitalOrder_v2_ServerApp.DTO">
<ExternalAttributesDTO>
<AttributeType>sample string 1</AttributeType>
<AttributeValue>sample string 3</AttributeValue>
<Name>sample string 2</Name>
<ShortName>sample string 4</ShortName>
</ExternalAttributesDTO>
<ExternalAttributesDTO>
<AttributeType>sample string 1</AttributeType>
<AttributeValue>sample string 3</AttributeValue>
<Name>sample string 2</Name>
<ShortName>sample string 4</ShortName>
</ExternalAttributesDTO>
</ArrayOfExternalAttributesDTO>