Tarifs.Tarifs¶
En bref
4 opérations sur 4 chemins. Préfixe /v2. Authentification JWT (voir Démarrer).
Opérations¶
| Méthode | Chemin | Rôle |
|---|---|---|
GET |
/v2/tarifs/datas/{ctNum} |
Appel GET sur tarifs/datas |
GET |
/v2/tarifs/datas/{ctNum}/{arRef} |
Appel GET sur tarifs/datas |
GET |
/v2/tarifs/get/{ctNum} |
Appel GET sur tarifs/get |
GET |
/v2/tarifs/get/{ctNum}/{arRef} |
Appel GET sur tarifs/get |
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/tarifs/datas/{ctNum}¶
Appel GET sur tarifs/datas.
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/tarifs/datas/<ctNum>" \
-H "Authorization: Bearer <jeton>" \
-H "Accept: application/json"
GET /v2/tarifs/datas/{ctNum}/{arRef}¶
Appel GET sur tarifs/datas.
Paramètres
| Nom | Emplacement | Type | Obligatoire | Description |
|---|---|---|---|---|
ctNum |
path | string |
oui | — |
arRef |
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/tarifs/datas/<ctNum>/<arRef>" \
-H "Authorization: Bearer <jeton>" \
-H "Accept: application/json"
GET /v2/tarifs/get/{ctNum}¶
Appel GET sur tarifs/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/tarifs/get/<ctNum>" \
-H "Authorization: Bearer <jeton>" \
-H "Accept: application/json"
GET /v2/tarifs/get/{ctNum}/{arRef}¶
Appel GET sur tarifs/get.
Paramètres
| Nom | Emplacement | Type | Obligatoire | Description |
|---|---|---|---|---|
ctNum |
path | string |
oui | — |
arRef |
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/tarifs/get/<ctNum>/<arRef>" \
-H "Authorization: Bearer <jeton>" \
-H "Accept: application/json"