cURL
curl --request GET \ --url http://localhost:3000/api/models/{modelId}/transitions \ --header 'Authorization: Bearer <token>'
[ { "id": "<string>", "type": "<string>", "source": "<string>", "target": "<string>", "data": { "label": "<string>", "effects": [ "<string>" ], "direction": "out", "notes": "<string>", "guards": [ { "limit": 123, "operator": ">", "variableId": "<string>", "id": "<string>", "type": "attribute" } ] } } ]
Retrieves all transitions associated with a specific model
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the model
List of transitions
The id of the edge
The type of the edge
The source node id
The target node id
The data associated with the edge
Show child attributes