Aller au contenu

Balance.Balance

En bref

8 opérations sur 8 chemins. Préfixe /v2. Authentification JWT (voir Démarrer).

Opérations

Méthode Chemin Rôle
POST /v2/balance/client/agee Appel POST sur balance/client/agee
GET /v2/balance/client/alerte Appel GET sur balance/client/alerte
GET /v2/balance/client/alerte/{ctNum} Appel GET sur balance/client/alerte
POST /v2/balance/client/solde Appel POST sur balance/client/solde
POST /v2/balance/fournisseur/agee Appel POST sur balance/fournisseur/agee
GET /v2/balance/fournisseur/alerte Appel GET sur balance/fournisseur/alerte
GET /v2/balance/fournisseur/alerte/{ctNum} Appel GET sur balance/fournisseur/alerte
POST /v2/balance/fournisseur/solde Appel POST sur balance/fournisseur/solde

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

POST /v2/balance/client/agee

Appel POST sur balance/client/agee.

Corps de la requête (application/json)

Schéma BalanceAgeeDto — 5 propriétés (détail : Schémas).

Réponses

Code Description Schéma de data
200 OK
401 Unauthorized
403 Forbidden

Exemple

curl -s -X POST "https://<votre-connecteur>/v2/balance/client/agee" \
  -H "Authorization: Bearer <jeton>" \
  -H "Content-Type: application/json" \
  -d '{"dateBalance": "2026-01-01T00:00:00", "cT_Num": "…", "periode1": 0}'

GET /v2/balance/client/alerte

Appel GET sur balance/client/alerte.

Réponses

Code Description Schéma de data
200 OK
401 Unauthorized
403 Forbidden

Exemple

curl -s -X GET "https://<votre-connecteur>/v2/balance/client/alerte?targets=DEMO&limit=50" \
  -H "Authorization: Bearer <jeton>" \
  -H "Accept: application/json"

GET /v2/balance/client/alerte/{ctNum}

Appel GET sur balance/client/alerte.

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/balance/client/alerte/<ctNum>" \
  -H "Authorization: Bearer <jeton>" \
  -H "Accept: application/json"

POST /v2/balance/client/solde

Appel POST sur balance/client/solde.

Corps de la requête (application/json)

Schéma BalanceAgeeDto — 5 propriétés (détail : Schémas).

Réponses

Code Description Schéma de data
200 OK
401 Unauthorized
403 Forbidden

Exemple

curl -s -X POST "https://<votre-connecteur>/v2/balance/client/solde" \
  -H "Authorization: Bearer <jeton>" \
  -H "Content-Type: application/json" \
  -d '{"dateBalance": "2026-01-01T00:00:00", "cT_Num": "…", "periode1": 0}'

POST /v2/balance/fournisseur/agee

Appel POST sur balance/fournisseur/agee.

Corps de la requête (application/json)

Schéma BalanceAgeeDto — 5 propriétés (détail : Schémas).

Réponses

Code Description Schéma de data
200 OK
401 Unauthorized
403 Forbidden

Exemple

curl -s -X POST "https://<votre-connecteur>/v2/balance/fournisseur/agee" \
  -H "Authorization: Bearer <jeton>" \
  -H "Content-Type: application/json" \
  -d '{"dateBalance": "2026-01-01T00:00:00", "cT_Num": "…", "periode1": 0}'

GET /v2/balance/fournisseur/alerte

Appel GET sur balance/fournisseur/alerte.

Réponses

Code Description Schéma de data
200 OK
401 Unauthorized
403 Forbidden

Exemple

curl -s -X GET "https://<votre-connecteur>/v2/balance/fournisseur/alerte?targets=DEMO&limit=50" \
  -H "Authorization: Bearer <jeton>" \
  -H "Accept: application/json"

GET /v2/balance/fournisseur/alerte/{ctNum}

Appel GET sur balance/fournisseur/alerte.

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/balance/fournisseur/alerte/<ctNum>" \
  -H "Authorization: Bearer <jeton>" \
  -H "Accept: application/json"

POST /v2/balance/fournisseur/solde

Appel POST sur balance/fournisseur/solde.

Corps de la requête (application/json)

Schéma BalanceAgeeDto — 5 propriétés (détail : Schémas).

Réponses

Code Description Schéma de data
200 OK
401 Unauthorized
403 Forbidden

Exemple

curl -s -X POST "https://<votre-connecteur>/v2/balance/fournisseur/solde" \
  -H "Authorization: Bearer <jeton>" \
  -H "Content-Type: application/json" \
  -d '{"dateBalance": "2026-01-01T00:00:00", "cT_Num": "…", "periode1": 0}'

Schémas

Schémas résolus à un niveau : les propriétés qui référencent un autre schéma sont citées par leur nom, sans être dépliées.

BalanceAgeeDto

BalanceAgeeDto — 5 propriétés
Propriété Type Notes
dateBalance string (date-time)
cT_Num string nullable
periode1 integer (int32)
periode2 integer (int32)
periode3 integer (int32)

Voir aussi