Rank One Partner API Version 1.0
You are currently viewing 'Get Injury Information ' page
Usage
GET /Athlete/InjuryInformation/:DistrictId/:InjuryId
OR
POST /Athlete/InjuryInformation/:DistrictId (List of IDs supplied in body)
Content-Type
application/json
Description
Returns injury information for the specified InjuryID
Note
Put the access token generated from the Get Access Token endpoint (Auth/ValidateUser) in the request header field "Authorization" as "bearer ACCESS_TOKEN_HERE". Sample request URL/Athlete/InjuryInformation/00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
Example
Type | Name | Required | Note |
URL | District ID | YES | District ID of user |
URL | Injury ID | YES | Injury ID of injury |
Sample Body (used when posting a list of IDs):
[
Sample response:
[
"52c99fc4-c7fd-4a66-ae36-d0a176c508cd",
"5ea78b00-a578-4fa5-bb2d-eb790c5ff462",
...
]Sample response:
{
"injuryGuid": "6b006911-27ca-4459-9fd1-65e539ec6767",
"athleteGuid": "488235f4-47c6-47e9-a549-3a99ff7580b1",
"chatId": "783235f4-47c6-47e9-a549-3a99ff7580b1",
"injuryDate": "2018-05-20T10:00:00",
"injuryDateUnknown": false,
"firstName": "John",
"middleName": "P",
"lastName": "Smith",
"sportName": "Football",
"status": "Open",
"mechanism": "Lorem ipsum dolor sit amet",
"injuryNature": "Acute",
"whereInjuryOccurred": "Field",
"SurfaceType": "Grass",
"summary": "Sed ut perspiciatis unde omnis iste natus error sit voluptatem.",
"followUpPlan": "As needed",
"eligibleToParticipate": true,
"estimatedReturnDate": "2018-06-29T00:00:00",
"promDegree": "0-120",
"aromDegree": "0-90",
"flexion": "2",
"extention": "1",
"InjuryReferences": [
{
"headerName": "Complaints",
"primaryRecord": true,
"refValue": "Right Ankle Pain"
},
{
"headerName": "Complaints",
"primaryRecord": false,
"refValue": "Left Ankle Pain"
},
{
"headerName": "Initial Treatments",
"primaryRecord": true,
"refValue": "Cold Pack"
},
...
]
}
Reference Values