GET api/v{version}/player/{id}/basic
Provides details about a player.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
player id |
integer |
Required |
version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
PlayerBasicViewModelName | Description | Type | Additional information |
---|---|---|---|
PlayerId |
Id of the player. This id is unique, but may be changes between version updates of the application. |
integer |
None. |
Key |
The unique key of the player. While the id of the player is also unique, this key will never change due to database reconfigurations. |
integer |
None. |
FullName |
The name of the player |
string |
None. |
NickName |
Nickname. |
string |
None. |
MartialStatus |
Martial status |
string |
None. |
Kids |
His kids |
string |
None. |
Job |
Job title. |
string |
None. |
Hobby |
Hobbies. |
string |
None. |
Darts |
Dart used. |
string |
None. |
Site |
Personal site. |
string |
None. |
Twitter account. |
string |
None. |
|
Music |
Music used. |
string |
None. |
HomeTown |
Current home town. |
string |
None. |
Nationality |
The nationality of the player. |
string |
None. |
NationalityCode | string |
None. |
|
CountryCode |
The nationality of the player represented by the country code. For example NL for the Netherlands. |
string |
None. |
DateOfBirth | date |
None. |
|
PlaceOfBirth | string |
None. |
|
Gender | GenderType |
None. |
|
Lateral | FootType |
None. |
|
Rol | RolType |
None. |
|
Status | StatusType |
None. |
|
Attachment |
A photo of the player. |
string |
None. |
AttachmentContentType | string |
None. |
|
AttachmentPhotographer | string |
None. |
|
AttachmentDescription | string |
None. |
|
AttachmentThrow | string |
None. |
|
AttachmentThrowContentType | string |
None. |
|
AttachmentThrowPhotographer | string |
None. |
|
AttachmentThrowDescription | string |
None. |
|
AttachmentPassport | string |
None. |
|
AttachmentPassportContentType | string |
None. |
|
AttachmentPassportPhotographer | string |
None. |
|
AttachmentPassportDescription | string |
None. |
|
Meta |
Provides list of meta data about the entity |
Dictionary of string [key] and string [value] |
None. |
Response Formats
application/json, text/json
{ "PlayerId": 1, "Key": 2, "FullName": "sample string 3", "NickName": "sample string 4", "MartialStatus": "sample string 5", "Kids": "sample string 6", "Job": "sample string 7", "Hobby": "sample string 8", "Darts": "sample string 9", "Site": "sample string 10", "Twitter": "sample string 11", "Music": "sample string 12", "HomeTown": "sample string 13", "Nationality": "sample string 14", "NationalityCode": "sample string 15", "CountryCode": "sample string 15", "DateOfBirth": "2021-04-16T20:14:35.0797024+02:00", "PlaceOfBirth": "sample string 16", "Gender": 0, "Lateral": 0, "Rol": 0, "Status": 0, "Attachment": "sample string 17", "AttachmentContentType": "sample string 18", "AttachmentPhotographer": "sample string 19", "AttachmentDescription": "sample string 20", "AttachmentThrow": "sample string 21", "AttachmentThrowContentType": "sample string 22", "AttachmentThrowPhotographer": "sample string 23", "AttachmentThrowDescription": "sample string 24", "AttachmentPassport": "sample string 25", "AttachmentPassportContentType": "sample string 26", "AttachmentPassportPhotographer": "sample string 27", "AttachmentPassportDescription": "sample string 28", "Meta": { "sample string 1": "sample string 2", "sample string 3": "sample string 4" } }
application/xml, text/xml
<PlayerBasicViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DartStat.Web.Areas.Apiv2.Models"> <Attachment>sample string 17</Attachment> <AttachmentContentType>sample string 18</AttachmentContentType> <AttachmentDescription>sample string 20</AttachmentDescription> <AttachmentPassport>sample string 25</AttachmentPassport> <AttachmentPassportContentType>sample string 26</AttachmentPassportContentType> <AttachmentPassportDescription>sample string 28</AttachmentPassportDescription> <AttachmentPassportPhotographer>sample string 27</AttachmentPassportPhotographer> <AttachmentPhotographer>sample string 19</AttachmentPhotographer> <AttachmentThrow>sample string 21</AttachmentThrow> <AttachmentThrowContentType>sample string 22</AttachmentThrowContentType> <AttachmentThrowDescription>sample string 24</AttachmentThrowDescription> <AttachmentThrowPhotographer>sample string 23</AttachmentThrowPhotographer> <CountryCode>sample string 15</CountryCode> <Darts>sample string 9</Darts> <DateOfBirth>2021-04-16T20:14:35.0797024+02:00</DateOfBirth> <FullName>sample string 3</FullName> <Gender>Male</Gender> <Hobby>sample string 8</Hobby> <HomeTown>sample string 13</HomeTown> <Job>sample string 7</Job> <Key>2</Key> <Kids>sample string 6</Kids> <Lateral>Left</Lateral> <MartialStatus>sample string 5</MartialStatus> <Meta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:KeyValueOfstringstring> <d2p1:Key>sample string 1</d2p1:Key> <d2p1:Value>sample string 2</d2p1:Value> </d2p1:KeyValueOfstringstring> <d2p1:KeyValueOfstringstring> <d2p1:Key>sample string 3</d2p1:Key> <d2p1:Value>sample string 4</d2p1:Value> </d2p1:KeyValueOfstringstring> </Meta> <Music>sample string 12</Music> <Nationality>sample string 14</Nationality> <NickName>sample string 4</NickName> <PlaceOfBirth>sample string 16</PlaceOfBirth> <PlayerId>1</PlayerId> <Rol>Player</Rol> <Site>sample string 10</Site> <Status>Active</Status> <Twitter>sample string 11</Twitter> </PlayerBasicViewModel>