POST api/Account/GILook
Request Information
URI Parameters
None.
Body Parameters
GIStoreGetBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| GNIName | string |
None. |
|
| GroupsCSV | string |
Required |
|
| Item | string |
None. |
|
| TypesCSV | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"GNIName": "sample string 1",
"GroupsCSV": "sample string 2",
"Item": "sample string 3",
"TypesCSV": "sample string 4"
}
application/xml, text/xml
Sample:
<GIStoreGetBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GatesNotesInsiders.Models"> <GNIName>sample string 1</GNIName> <GroupsCSV>sample string 2</GroupsCSV> <Item>sample string 3</Item> <TypesCSV>sample string 4</TypesCSV> </GIStoreGetBindingModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of UserGI| Name | Description | Type | Additional information |
|---|---|---|---|
| Group | string |
None. |
|
| Type | string |
None. |
|
| Item | string |
None. |
|
| Value | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Group": "sample string 1",
"Type": "sample string 2",
"Item": "sample string 3",
"Value": "sample string 4"
},
{
"Group": "sample string 1",
"Type": "sample string 2",
"Item": "sample string 3",
"Value": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfUserGI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GIStore">
<UserGI>
<Group>sample string 1</Group>
<Item>sample string 3</Item>
<Type>sample string 2</Type>
<Value>sample string 4</Value>
</UserGI>
<UserGI>
<Group>sample string 1</Group>
<Item>sample string 3</Item>
<Type>sample string 2</Type>
<Value>sample string 4</Value>
</UserGI>
</ArrayOfUserGI>