Le volet espèces
GET
/operations/{operation}/imputations
const url = 'https://example.com/operations/example/imputations';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/operations/example/imputations \ --header 'Authorization: Bearer <token>'UNE OPÉRATION INDIVIDUELLE N’A PAS DE RÈGLEMENT EN PROPRE : elle porte des imputations.
Autorisations
Section intitulée « Autorisations »Paramètres
Section intitulée « Paramètres »Paramètres (path)
Section intitulée « Paramètres (path) »operation
required
string
Réponses
Section intitulée « Réponses »Les imputations et la couverture.
Media typeapplication/json
object
imputations
Array<object>
object
reglement
object
reference
string
objet
string
sens
string
contrepartieRef
string
moyen
string
montantGlobalCt
integer format: int64
nombreImputations
Le « ventilé sur » de l’écran — SERVI, jamais compté par l’interface.
integer
etat
string
constateLe
string format: date
montantImputeCt
LA PART IMPUTÉE ICI — en champ distinct du montant global, jamais fondue.
integer format: int64
etatRapprochement
string
rapprocheeLe
string format: date-time
couvertureEspeces
object
brutCt
integer format: int64
imputeRapprocheCt
integer format: int64
complete
boolean
Examplegenerated
{ "imputations": [ { "reglement": { "reference": "example", "objet": "example", "sens": "example", "contrepartieRef": "example", "moyen": "example", "montantGlobalCt": 1, "nombreImputations": 1, "etat": "example", "constateLe": "2026-04-15" }, "montantImputeCt": 1, "etatRapprochement": "example", "rapprocheeLe": "2026-04-15T12:00:00Z" } ], "couvertureEspeces": { "brutCt": 1, "imputeRapprocheCt": 1, "complete": true }}