Vérifier le statut d'un trajet envoyé
Path parameters
-
Identifiant unique du trajet envoyé par l'opérateur.
Minimum length is
1
, maximum length is256
. Format should match the following pattern:^[a-z0-9]{1,256}$
.
Responses
-
200 application/json
OK Le trajet a été trouvé et son statut est retourné. Attention, le trajet peut être en erreur malgré le code 200, vérifiez le statut retourné.
-
401 application/json
Non authentifié. Le token applicatif est manquant ou invalide.
-
403 application/json
Non autorisé
-
404 application/json
Le trajet n'a pas été trouvé
GET
/journeys/{operator_journey_id}
curl \
-X GET https://api.covoiturage.beta.gouv.fr/v3.1/journeys/{operator_journey_id}
Response examples (200)
{
"status": "fraud_error",
"operator_journey_id": "string",
"created_at": "2024-05-04T09:42:00+00:00",
"fraud_error_labels": [
"interoperator_overlap"
],
"anomaly_error_details": [
{
"label": "temporal_overlap_anomaly",
"metas": {
"conflicting_journey_id": "string",
"temporal_overlap_duration_ratio": 42.0
}
}
],
"terms_violation_details": [
"expired"
]
}
Response examples (401)
{
"id": 1,
"error": {
"code": -32501,
"data": "Unauthorized application",
"message": "Unauthorized Error"
},
"jsonrpc": "2.0"
}
Response examples (403)
{
"id": 1,
"error": {
"code": -32503,
"data": "Invalid permissions",
"message": "Forbidden Error"
},
"jsonrpc": "2.0"
}
Response examples (404)
{
"code": 404,
"error": "Not found"
}