PUT api/candidate/travel/journey
Request Information
URI Parameters
None.
Body Parameters
CandidateTravelOptDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| TravelMode | TravelPreference |
None. |
|
| OptedValue | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"TravelMode": 0,
"OptedValue": true
}
Response Information
Resource Description
MemberTravelOpt| Name | Description | Type | Additional information |
|---|---|---|---|
| CandidateId | string |
None. |
|
| Driving | boolean |
None. |
|
| Bus | boolean |
None. |
|
| Underground | boolean |
None. |
|
| Train | boolean |
None. |
|
| Cycling | boolean |
None. |
|
| Walking | boolean |
None. |
|
| MaxJourneyTime | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"CandidateId": "sample string 1",
"Driving": true,
"Bus": true,
"Underground": true,
"Train": true,
"Cycling": true,
"Walking": true,
"MaxJourneyTime": 1
}