GET trajects/{id}/rides/{childId}/forms/{grandChildId}
Gets the relation between a ride and a form.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | The Id of the traject |
Define this parameter in the request URI. |
| childId | The Id of the ride |
Define this parameter in the request URI. |
| grandChildId | The Id of the form |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Uri": "/trajects/1/rides/1/forms/5",
"FormUri": "/forms/5",
"FormId": 5,
"RideUri": "/trajects/1/rides/1",
"RideId": 1,
"TrajectUri": "/trajects/1",
"TrajectId": 1,
"Priority": 0
}
application/xml, text/xml
Sample:
<RideFormRestGet xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <FormId>5</FormId> <Priority>0</Priority> <Uri>/trajects/1/rides/1/forms/5</Uri> <FormUri>/forms/5</FormUri> <RideUri>/trajects/1/rides/1</RideUri> <RideId>1</RideId> <TrajectUri>/trajects/1</TrajectUri> <TrajectId>1</TrajectId> </RideFormRestGet>
