GET api/Fitting/{id}?p_Hand={p_Hand}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| p_Hand | string |
Required |
|
| id | string |
None. |
Body Parameters
None.
Response Information
Resource Description
ClubFittingSpecs| Name | Description | Type | Additional information |
|---|---|---|---|
| CalculationMethod | string |
None. |
|
| PlayingLength | decimal number |
None. |
|
| Tipping | decimal number |
None. |
|
| HeadBrand | string |
None. |
|
| HeadModel | string |
None. |
|
| AdaptorModel | string |
None. |
|
| AdaptorLength | decimal number |
None. |
|
| AdaptorDepth | decimal number |
None. |
|
| Hand | string |
None. |
|
| FittedLength | decimal number |
None. |
|
| FinalShaftLength | decimal number |
None. |
|
| GripExtend | decimal number |
None. |
|
| comments | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"CalculationMethod": "sample string 1",
"PlayingLength": 2.1,
"Tipping": 3.1,
"HeadBrand": "sample string 4",
"HeadModel": "sample string 5",
"AdaptorModel": "sample string 6",
"AdaptorLength": 7.1,
"AdaptorDepth": 8.1,
"Hand": "sample string 9",
"FittedLength": 20.2,
"FinalShaftLength": 10.1,
"GripExtend": 11.1,
"comments": ""
}
text/html
Sample:
{"CalculationMethod":"sample string 1","PlayingLength":2.1,"Tipping":3.1,"HeadBrand":"sample string 4","HeadModel":"sample string 5","AdaptorModel":"sample string 6","AdaptorLength":7.1,"AdaptorDepth":8.1,"Hand":"sample string 9","FittedLength":20.2,"FinalShaftLength":10.1,"GripExtend":11.1,"comments":""}
application/xml, text/xml
Sample:
<ClubFittingSpecs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TptGolfApi.Controllers"> <AdaptorDepth>8.1</AdaptorDepth> <AdaptorLength>7.1</AdaptorLength> <AdaptorModel>sample string 6</AdaptorModel> <CalculationMethod>sample string 1</CalculationMethod> <FinalShaftLength>10.1</FinalShaftLength> <GripExtend>11.1</GripExtend> <Hand>sample string 9</Hand> <HeadBrand>sample string 4</HeadBrand> <HeadModel>sample string 5</HeadModel> <PlayingLength>2.1</PlayingLength> <Tipping>3.1</Tipping> </ClubFittingSpecs>