Format de la requête
{
"action": [search, select_region, select_departement],
"departement": "",
"region": ""
} Paramètres
| Nom | Requis | Type | Valeur par défaut | Description |
|---|---|---|---|---|
| action | Oui | String | Aucune | Action: search, select_region, select_departement |
| departement | Non | String | Aucune | departement à rechercher |
| region | Non | String | Aucune | region à rechercher |
Format de la réponse
[
{
"Club": "VTT VIEUX CHEMINS",
"City": "BAIE-MAHAULT",
"Phone": "0690564622",
"Email": "vttvieuxchemins@gmail.com",
"Website": "",
"Departement": "",
"Region": ""
},
...
] Exemples
action = select_region
GET /api/c2b4wp/v1/clubs?action=select_region
réponse
[
{
"Region": "AUVERGNE RHONE ALPES"
},
{
"Region": "BOURGOGNE FRANCHE COMTE"
},
...
] action = select_departement
GET /api/c2b4wp/v1/clubs?action=select_departement
réponse
[
{
"Departement": "AIN"
},
{
"Departement": "AISNE"
},
{
"Departement": "ALLIER"
},
...
] action = search
GET /api/c2b4wp/v1/clubs?action=search
réponse
[
{
"Club": "VTT VIEUX CHEMINS",
"City": "BAIE-MAHAULT",
"Phone": "0690564622",
"Email": "vttvieuxchemins@gmail.com",
"Website": "",
"Departement": "",
"Region": ""
},
{
"Club": "CLUB DES V.I.P.S",
"City": "IVRY SUR SEINE",
"Phone": "0156208888",
"Email": "s.calluaud@ffct.org",
"Website": "",
"Departement": "",
"Region": ""
},
...
] action = search & departement
GET /api/c2b4wp/v1/clubs?action=search&departement=COTE-D'OR
[
{
"Club": "ASL AISEREY",
"City": "AISEREY",
"Phone": "0380297202",
"Email": "marchand.mi@free.fr",
"Website": "",
"Departement": "COTE-D'OR",
"Region": "BOURGOGNE FRANCHE COMTE"
},
{
"Club": "LES CYCLOS DU PAYS D ARNAY",
"City": "ARNAY LE DUC",
"Phone": "0683498494",
"Email": "micheline.peillon@gmail.com",
"Website": "",
"Departement": "COTE-D'OR",
"Region": "BOURGOGNE FRANCHE COMTE"
},
...
] réponse
action = search & region
GET /api/c2b4wp/v1/clubs?action=search®ion=BOURGOGNE FRANCHE COMTE
réponse
[
{
"Club": "ASL AISEREY",
"City": "AISEREY",
"Phone": "0380297202",
"Email": "marchand.mi@free.fr",
"Website": "",
"Departement": "COTE-D'OR",
"Region": "BOURGOGNE FRANCHE COMTE"
},
{
"Club": "LES CYCLOS DU PAYS D ARNAY",
"City": "ARNAY LE DUC",
"Phone": "0683498494",
"Email": "micheline.peillon@gmail.com",
"Website": "",
"Departement": "COTE-D'OR",
"Region": "BOURGOGNE FRANCHE COMTE"
},
...
] 