SWS_SalarieBulletinLignes
- 12 Feb 2023
- 1 Minute à lire
- Impression
- SombreLumière
- PDF
SWS_SalarieBulletinLignes
- Mis à jour le 12 Feb 2023
- 1 Minute à lire
- Impression
- SombreLumière
- PDF
Résumé de l’article
Avez-vous trouvé ce résumé utile ?
Merci pour vos commentaires
Fonction API
SWS_SalarieBulletinLignes
Description
Permet de récupérer les informations de toutes les lignes (hors totaux) du bulletin d'un salarié, telles qu'elle apparaissent dans l'écran d'affichage du bulletin dans Silae
Il est fortement préconisé d’utiliser la fonction SWS_SalarieBulletinDetails car elle permet d’obtenir toutes les données notamment dans le cas où sur une même période, plusieurs bulletins ont été générés (ex : bulletin de paie du mois + bulletin intéressement)
Groupe de fonctions API
Code API : G10 / BUL001
Paramètres de la requête
Paramètre | Type | Description |
---|---|---|
Token | string | Token d'authentification renvoyé en réponse à l'authentification via SWS_SiteLogin |
NumeroDossier | string | Numéro du dossier concerné par la requête |
RequeteSalarieBulletinLignes | CPAISWSRequeteSalarieBulletinLignes | Élément structuré contenant les paramètres de la recherche du bulletin (cf. détail ci-dessous) |
CPAISWSRequeteSalarieBulletinLignes
Paramètre | Type | Description |
---|---|---|
MatriculeSalarie | string | Matricule du salarié concerné |
IdentifiantEmploi | int | Identifiant de l'emploi concerné |
Periode | dateTime | Période à laquelle est rattachée le bulletin recherché |
Paramètres de la réponse
Paramètre | Type | Description |
---|---|---|
SWS_SalarieBulletinLignesResult | SWS_SalarieBulletinLignesResult | Élément structuré contenant la réponse à la requête (Détail ci-dessous) |
SWS_SalarieBulletinLignesResult
Paramètre | Type | Description |
---|---|---|
Error | string | Vide s'il n'y a pas d'erreur, sinon contient la description de l'erreur rencontrée |
SalarieLignesBulletin | CPAISWSReponseSalarieBulletinLignes | Élément structuré contenant les informations liées au bulletin (cf. détail ci-dessous) |
CPAISWSReponseSalarieBulletinLignes
Paramètre | Type | Description |
---|---|---|
MatriculeSalarie | string | Matricule du salarié concerné |
IdentifiantEmploi | int | Identifiant de l'emploi concerné |
Periode | dateTime | Période à laquelle est rattaché le bulletin |
IntituleEmploi | string | Intitulé de l'emploi |
LignesBulletin | CPAISWSLigneBulletin[] | Liste d'éléments structurés contenant les informations de chaque ligne du bulletin (cf. détail ci-dessous) |
CPAISWSLigneBulletin
Paramètre | Type | Description |
---|---|---|
CodeLibelle | string | Code Libellé |
Libelle | string | Libellé |
BaseSalariale | double | Base salariale |
TauxOuMontantSalarial | double | Taux/montant salarial |
ResultatSalarial | double | Résultat salarial |
BasePatronale | double | Base patronale |
TauxOuMontantPatronal | double | Taux/montant patronal |
ResultatPatronal | double | Résultat patronal |
CodeDucs | string | Code DUCS |
Requête
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<SWS_SalarieBulletinLignes xmlns="http://www.silae.fr/">
<Token>string</Token>
<NumeroDossier>string</NumeroDossier>
<RequeteSalarieBulletinLignes>
<MatriculeSalarie>string</MatriculeSalarie>
<IdentifiantEmploi>int</IdentifiantEmploi>
<Periode>yyyy-mm-ddThh:mm:ss</Periode>
</RequeteSalarieBulletinLignes>
</SWS_SalarieBulletinLignes>
</soap12:Body>
</soap12:Envelope>
Réponse
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<SWS_SalarieBulletinLignesResponse xmlns="http://www.silae.fr/">
<SWS_SalarieBulletinLignesResult>
<Error>string</Error>
<SalarieLignesBulletin>
<MatriculeSalarie>string</MatriculeSalarie>
<IdentifiantEmploi>int</IdentifiantEmploi>
<Periode>yyyy-mm-ddThh:mm:ss</Periode>
<IntituleEmploi>string</IntituleEmploi>
<LignesBulletin>
<CPAISWSLigneBulletin>
<CodeLibelle>string</CodeLibelle>
<Libelle>string</Libelle>
<BaseSalariale>double</BaseSalariale>
<TauxOuMontantSalarial>double</TauxOuMontantSalarial>
<ResultatSalarial>double</ResultatSalarial>
<BasePatronale>double</BasePatronale>
<TauxOuMontantPatronal>double</TauxOuMontantPatronal>
<ResultatPatronal>double</ResultatPatronal>
<CodeDucs>string</CodeDucs>
</CPAISWSLigneBulletin>
<CPAISWSLigneBulletin>
<CodeLibelle>string</CodeLibelle>
<Libelle>string</Libelle>
<BaseSalariale>double</BaseSalariale>
<TauxOuMontantSalarial>double</TauxOuMontantSalarial>
<ResultatSalarial>double</ResultatSalarial>
<BasePatronale>double</BasePatronale>
<TauxOuMontantPatronal>double</TauxOuMontantPatronal>
<ResultatPatronal>double</ResultatPatronal>
<CodeDucs>string</CodeDucs>
</CPAISWSLigneBulletin>
</LignesBulletin>
</SalarieLignesBulletin>
</SWS_SalarieBulletinLignesResult>
</SWS_SalarieBulletinLignesResponse>
</soap12:Body>
</soap12:Envelope>
Cet article vous a-t-il été utile ?