Contains functionality to updates standings.
Update Standings
Updates an existing standings position.
Endpoint
PUT https://waterpolo.exposureevents.com/api/v1/standings
Parameters
| Name | Type | Default | Required | Description | 
|---|---|---|---|---|
| eventid | integer | The event id. | ||
| teampoolid | integer | The team pool id within a pool, required to update with team id | ||
| teamid | integer | Updates the team pool id position with this team. | 
     Updates will only occur on parameters provided in the request and will ignore updating the other parameters.
{
  "EventId": 245,
  "TeamPoolId": 3435,
  "TeamId": 3345645
}
    <Request xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <EventId>245</EventId>
  <TeamId>3345645</TeamId>
  <TeamPoolId>3435</TeamPoolId>
</Request>
    {}
    <Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" />