HTTP + XML
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /xml/reply/SearchOpponentsByState HTTP/1.1
Host: api.digitalscout.com
Content-Type: application/xml
Content-Length: length
<SearchOpponentsByState xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameCenter.Api.Models">
<stateCode>String</stateCode>
<teamId>0</teamId>
</SearchOpponentsByState>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<SearchOpponentsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameCenter.Api.Models">
<Results>
<Nodes>
<SearchResult>
<Detail>String</Detail>
<Disclosure>false</Disclosure>
<Identifier>0</Identifier>
<IsTeamResult>false</IsTeamResult>
<Reason>String</Reason>
<Selector>String</Selector>
<TeamAcronym>String</TeamAcronym>
<TeamName>String</TeamName>
<TeamSeasonId>0</TeamSeasonId>
<Title>String</Title>
<Url>String</Url>
</SearchResult>
</Nodes>
<SearchBarWatermark>String</SearchBarWatermark>
<Title>String</Title>
</Results>
</SearchOpponentsResponse>