POST postreg/ratings/{eventid}/{attendeeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| eventid | globally unique identifier |
Required |
|
| attendeeId | globally unique identifier |
Required |
Body Parameters
Collection of BuyerRankingsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| EntityId | globally unique identifier |
None. |
|
| AttendeeId | globally unique identifier |
None. |
|
| BuyerRank | integer |
None. |
|
| AccountId | globally unique identifier |
None. |
|
| AccountCountry | string |
None. |
|
| AccountName | string |
None. |
|
| ContactName | string |
None. |
|
| ContactTitle | string |
None. |
|
| UserAttendeeId | globally unique identifier |
None. |
|
| IsDisabled | boolean |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"EntityId": "78dc2abe-3662-43cb-95d8-2bbfbfe1d696",
"AttendeeId": "b0c1710e-57b8-4283-8526-e662eebd647f",
"BuyerRank": 1,
"AccountId": "62963171-4787-43fb-81ba-0cfe8678fec5",
"AccountCountry": "sample string 4",
"AccountName": "sample string 5",
"ContactName": "sample string 6",
"ContactTitle": "sample string 7",
"UserAttendeeId": "28abfff4-c0a0-483a-94bf-9cfd0cf979c7",
"IsDisabled": true
},
{
"EntityId": "78dc2abe-3662-43cb-95d8-2bbfbfe1d696",
"AttendeeId": "b0c1710e-57b8-4283-8526-e662eebd647f",
"BuyerRank": 1,
"AccountId": "62963171-4787-43fb-81ba-0cfe8678fec5",
"AccountCountry": "sample string 4",
"AccountName": "sample string 5",
"ContactName": "sample string 6",
"ContactTitle": "sample string 7",
"UserAttendeeId": "28abfff4-c0a0-483a-94bf-9cfd0cf979c7",
"IsDisabled": true
}
]
application/xml, text/xml
Sample:
<ArrayOfBuyerRankingsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FoodExport.Web.Services.Models">
<BuyerRankingsModel>
<AccountCountry>sample string 4</AccountCountry>
<AccountId>62963171-4787-43fb-81ba-0cfe8678fec5</AccountId>
<AccountName>sample string 5</AccountName>
<AttendeeId>b0c1710e-57b8-4283-8526-e662eebd647f</AttendeeId>
<BuyerRank>1</BuyerRank>
<ContactName>sample string 6</ContactName>
<ContactTitle>sample string 7</ContactTitle>
<EntityId>78dc2abe-3662-43cb-95d8-2bbfbfe1d696</EntityId>
<IsDisabled>true</IsDisabled>
<UserAttendeeId>28abfff4-c0a0-483a-94bf-9cfd0cf979c7</UserAttendeeId>
</BuyerRankingsModel>
<BuyerRankingsModel>
<AccountCountry>sample string 4</AccountCountry>
<AccountId>62963171-4787-43fb-81ba-0cfe8678fec5</AccountId>
<AccountName>sample string 5</AccountName>
<AttendeeId>b0c1710e-57b8-4283-8526-e662eebd647f</AttendeeId>
<BuyerRank>1</BuyerRank>
<ContactName>sample string 6</ContactName>
<ContactTitle>sample string 7</ContactTitle>
<EntityId>78dc2abe-3662-43cb-95d8-2bbfbfe1d696</EntityId>
<IsDisabled>true</IsDisabled>
<UserAttendeeId>28abfff4-c0a0-483a-94bf-9cfd0cf979c7</UserAttendeeId>
</BuyerRankingsModel>
</ArrayOfBuyerRankingsModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |