The outright livescore element holds the participant's Id and Name and their result:
XML
<Header> <Type>39</Type> <MsgGuid>01017c9c-beb3-47d0-9f8e-110c22dab96e</MsgGuid> <ServerTimestamp>1575369435847</ServerTimestamp> </Header> <Body> <Competition Id="3310" Name="Wolverhampton" Type="1"> <Events> <Event FixtureId="1234567"> <OutrightScore> <Status>3</Status> <ParticipantResults> <ParticipantResult> <ParticipantId>11111111</ParticipantId> <Name>Participant1</Name> <Result>1</Result> </ParticipantResult> <ParticipantResult> <ParticipantId>22222222</ParticipantId> <Name>Participant2</Name> <Result>2</Result> </ParticipantResult> <ParticipantResult> <ParticipantId>33333333</ParticipantId> <Name>Participant3</Name> <Result>3</Result> </ParticipantResult> </ParticipantResults> <ParticipantResult> <ParticipantId>44444444</ParticipantId> <Name>Participant4</Name> <Result>4</Result> </ParticipantResult> </OutrightScore> </Event> </Events> </Competition> </Body>
Json
{ "Message": { "Header": { "Type": "39", "MsgGuid": "01017c9c-beb3-47d0-9f8e-110c22dab96e", "ServerTimestamp": "1575369435847" }, "Body": { "Competition": { "Events": { "Event": { "OutrightScore": { "Status": "3", "ParticipantResults": [ { "ParticipantId": "11111111", "Name": "Participant1", "Result": "1" }, { "ParticipantId": "22222222", "Name": "Participant2", "Result": "2" }, { "ParticipantId": "33333333", "Name": "Participant3", "Result": "3" } ], }, "FixtureId": "1234567" } }, "Id": "3310", "Name": "Wolverhampton", "Type": "1" } } } }
Model
Element | Data Type | Description |
---|---|---|
OutrightLivescore.ParticipantResults | Array | An array of ParticipantResults elements. |
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article