Cadencier.Cadencier¶
En bref
5 opérations sur 5 chemins. Préfixe /v2. Authentification JWT (voir Démarrer).
Opérations¶
| Méthode | Chemin | Rôle |
|---|---|---|
GET |
/v2/cadencier/clients/{ctNum} |
Appel GET sur cadencier/clients |
GET |
/v2/cadencier/clients/{ctNum}/{liNo} |
Appel GET sur cadencier/clients |
GET |
/v2/cadencier/get/{ctNum} |
Appel GET sur cadencier/get |
GET |
/v2/cadencier/get/{ctNum}/{liNo} |
Appel GET sur cadencier/get |
GET |
/v2/cadencier/parametres |
Appel GET sur cadencier/parametres |
Rôle déduit
La spécification ne porte ni summary ni description d'opération : la colonne Rôle est déduite mécaniquement de la méthode HTTP et du chemin.
Détail¶
GET /v2/cadencier/clients/{ctNum}¶
Appel GET sur cadencier/clients.
Paramètres
| Nom | Emplacement | Type | Obligatoire | Description |
|---|---|---|---|---|
ctNum |
path | string |
oui | — |
Réponses
| Code | Description | Schéma de data |
|---|---|---|
200 |
OK | — |
401 |
Unauthorized | — |
403 |
Forbidden | — |
Exemple
curl -s -X GET "https://<votre-connecteur>/v2/cadencier/clients/<ctNum>" \
-H "Authorization: Bearer <jeton>" \
-H "Accept: application/json"
GET /v2/cadencier/clients/{ctNum}/{liNo}¶
Appel GET sur cadencier/clients.
Paramètres
| Nom | Emplacement | Type | Obligatoire | Description |
|---|---|---|---|---|
ctNum |
path | string |
oui | — |
liNo |
path | integer (int64) |
oui | — |
Réponses
| Code | Description | Schéma de data |
|---|---|---|
200 |
OK | — |
401 |
Unauthorized | — |
403 |
Forbidden | — |
Exemple
curl -s -X GET "https://<votre-connecteur>/v2/cadencier/clients/<ctNum>/<liNo>" \
-H "Authorization: Bearer <jeton>" \
-H "Accept: application/json"
GET /v2/cadencier/get/{ctNum}¶
Appel GET sur cadencier/get.
Paramètres
| Nom | Emplacement | Type | Obligatoire | Description |
|---|---|---|---|---|
ctNum |
path | string |
oui | — |
Réponses
| Code | Description | Schéma de data |
|---|---|---|
200 |
OK | — |
401 |
Unauthorized | — |
403 |
Forbidden | — |
Exemple
curl -s -X GET "https://<votre-connecteur>/v2/cadencier/get/<ctNum>" \
-H "Authorization: Bearer <jeton>" \
-H "Accept: application/json"
GET /v2/cadencier/get/{ctNum}/{liNo}¶
Appel GET sur cadencier/get.
Paramètres
| Nom | Emplacement | Type | Obligatoire | Description |
|---|---|---|---|---|
ctNum |
path | string |
oui | — |
liNo |
path | integer (int64) |
oui | — |
Réponses
| Code | Description | Schéma de data |
|---|---|---|
200 |
OK | — |
401 |
Unauthorized | — |
403 |
Forbidden | — |
Exemple
curl -s -X GET "https://<votre-connecteur>/v2/cadencier/get/<ctNum>/<liNo>" \
-H "Authorization: Bearer <jeton>" \
-H "Accept: application/json"
GET /v2/cadencier/parametres¶
Appel GET sur cadencier/parametres.
Réponses
| Code | Description | Schéma de data |
|---|---|---|
200 |
OK | — |
401 |
Unauthorized | — |
403 |
Forbidden | — |
Exemple
curl -s -X GET "https://<votre-connecteur>/v2/cadencier/parametres?targets=DEMO&limit=50" \
-H "Authorization: Bearer <jeton>" \
-H "Accept: application/json"