PUT trajects/{id}/rides/{childId}/move
Moves a ride to another traject. This can only be done when the trajects have not yet been synced with a tablet. Only a dispatcher can call this method.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | The id of te traject |
Define this parameter in the request URI. |
| childId | The id of te ride |
Define this parameter in the request URI. |
| model | A simple model containing the target traject id |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"TargetTrajectId": 1
}
application/xml, text/xml
Sample:
<RideMoveRest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <TargetTrajectId>1</TargetTrajectId> </RideMoveRest>
