GET AttributeType/GetAttributeType?attributeType={attributeType}
Returns a List of Attribute Names for the Requested Type.
Request Information
URI Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| attributeType |
The Type of Attributes to Return. |
CrossReferenceTypes |
Required |
Body Parameters
Response Information
Resource Description
Returns a List of Attribute Names for the Requested Type.
AgvAttributeType| Name | Description | Type | Additional Information |
|---|---|---|---|
| Status |
Status of the API call. |
string | |
| Message |
Message of the API call. |
string | |
| Count |
Count of how many AttributeType JSON dictionaries. |
string | |
| AttributeTypes |
JSON dictionary of AttributeType objects. |
Collection of ClsMasterCrossRefNames |
Response Formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"Message": "sample string 2",
"Count": "2",
"AttributeTypes": [
{
"AttributeName": "sample string 6",
"AttributeType": "sample string 7",
"Required": true,
"SpecifiedLength": 9,
"DisallowDuplicates": true,
"AttributeValueList": [
"sample string 1",
"sample string 2"
]
},
{
"AttributeName": "sample string 6",
"AttributeType": "sample string 7",
"Required": true,
"SpecifiedLength": 9,
"DisallowDuplicates": true,
"AttributeValueList": [
"sample string 1",
"sample string 2"
]
}
]
}
application/xml, text/xml
Sample:
<AgvAttributeType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.General">
<AttributeTypes xmlns:d2p1="http://schemas.datacontract.org/2004/07/SSI">
<d2p1:AttributeType>
<d2p1:AttributeName>sample string 6</d2p1:AttributeName>
<d2p1:AttributeType>sample string 7</d2p1:AttributeType>
<d2p1:AttributeValueList xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:string>sample string 1</d4p1:string>
<d4p1:string>sample string 2</d4p1:string>
</d2p1:AttributeValueList>
<d2p1:DisallowDuplicates>true</d2p1:DisallowDuplicates>
<d2p1:Required>true</d2p1:Required>
<d2p1:SpecifiedLength>9</d2p1:SpecifiedLength>
</d2p1:AttributeType>
<d2p1:AttributeType>
<d2p1:AttributeName>sample string 6</d2p1:AttributeName>
<d2p1:AttributeType>sample string 7</d2p1:AttributeType>
<d2p1:AttributeValueList xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:string>sample string 1</d4p1:string>
<d4p1:string>sample string 2</d4p1:string>
</d2p1:AttributeValueList>
<d2p1:DisallowDuplicates>true</d2p1:DisallowDuplicates>
<d2p1:Required>true</d2p1:Required>
<d2p1:SpecifiedLength>9</d2p1:SpecifiedLength>
</d2p1:AttributeType>
</AttributeTypes>
<Message>sample string 2</Message>
<Status>sample string 1</Status>
</AgvAttributeType>