parent
6d9a838eea
commit
0d656921d9
@ -0,0 +1,7 @@ |
|||||||
|
in: query |
||||||
|
name: epObligatoire |
||||||
|
schema: |
||||||
|
type: boolean |
||||||
|
default: false |
||||||
|
description: Récupérer la liste des EP obligatoires |
||||||
|
required: false |
@ -1,20 +0,0 @@ |
|||||||
get: |
|
||||||
tags: |
|
||||||
- ep |
|
||||||
operationId: getEP |
|
||||||
description: Récupérer la liste de tous les EP collaborateurs |
|
||||||
parameters: |
|
||||||
- $ref: ../../parameters/query/asc.yaml |
|
||||||
- $ref: ../../parameters/query/idAgence.yaml |
|
||||||
- $ref: ../../parameters/query/idBU.yaml |
|
||||||
- $ref: ../../parameters/query/numPage.yaml |
|
||||||
- $ref: ../../parameters/query/parPage.yaml |
|
||||||
- $ref: ../../parameters/query/statutep.yaml |
|
||||||
- $ref: ../../parameters/query/texte.yaml |
|
||||||
- $ref: ../../parameters/query/tri.yaml |
|
||||||
responses: |
|
||||||
'200': |
|
||||||
$ref: ../../responses/ep/getListeEP.yaml |
|
||||||
|
|
||||||
'403': |
|
||||||
$ref: ../../responses/erreur/forbidden.yaml |
|
@ -0,0 +1,26 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: getEPEnCoursCount |
||||||
|
description: Récupérer le nombre total d’EP en cours. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/query/idBUs.yaml |
||||||
|
- $ref: ../../parameters/query/asc.yaml |
||||||
|
- $ref: ../../parameters/query/numPage.yaml |
||||||
|
- $ref: ../../parameters/query/parPage.yaml |
||||||
|
- $ref: ../../parameters/query/texte.yaml |
||||||
|
- $ref: ../../parameters/query/tri.yaml |
||||||
|
- $ref: ../../parameters/query/dateDebut.yaml |
||||||
|
- $ref: ../../parameters/query/dateFin.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/getCountEp.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -0,0 +1,22 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: getProchainEPCollaborateur |
||||||
|
description: Récupérer le prochain EP du collaborateur. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idCollaborateur.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/getEpInformation.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -0,0 +1,31 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: getEPEnCoursReferent |
||||||
|
description: Récupérer la liste des prochains EP d’un référent. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idReferent.yaml |
||||||
|
- $ref: ../../parameters/query/asc.yaml |
||||||
|
- $ref: ../../parameters/query/numPage.yaml |
||||||
|
- $ref: ../../parameters/query/parPage.yaml |
||||||
|
- $ref: ../../parameters/query/texte.yaml |
||||||
|
- $ref: ../../parameters/query/tri.yaml |
||||||
|
- $ref: ../../parameters/query/epObligatoire.yaml |
||||||
|
- $ref: ../../parameters/query/dateDebut.yaml |
||||||
|
- $ref: ../../parameters/query/dateFin.yaml |
||||||
|
|
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/getListeEpInformation.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -0,0 +1,31 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: getEPEnCoursReferentCount |
||||||
|
description: Récupérer le nombre total de prochains EP d’un référent. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idReferent.yaml |
||||||
|
- $ref: ../../parameters/query/asc.yaml |
||||||
|
- $ref: ../../parameters/query/numPage.yaml |
||||||
|
- $ref: ../../parameters/query/parPage.yaml |
||||||
|
- $ref: ../../parameters/query/texte.yaml |
||||||
|
- $ref: ../../parameters/query/tri.yaml |
||||||
|
- $ref: ../../parameters/query/epObligatoire.yaml |
||||||
|
- $ref: ../../parameters/query/dateDebut.yaml |
||||||
|
- $ref: ../../parameters/query/dateFin.yaml |
||||||
|
|
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/getCountEp.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -0,0 +1,22 @@ |
|||||||
|
delete: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: deleteEPCollaborateur |
||||||
|
description: Supprimer les EP d’un collaborateur. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idCollaborateur.yaml |
||||||
|
responses: |
||||||
|
'204': |
||||||
|
$ref: ../../responses/ep/deleteEpCollaborateur.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -0,0 +1,71 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: getEPById |
||||||
|
description: Récupérer un EP par son id. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idEP.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/getEP.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
||||||
|
put: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: updateEP |
||||||
|
description: Mettre à jour les informations d’un EP. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idEP.yaml |
||||||
|
requestBody: |
||||||
|
$ref: ../../requestbodies/ep.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/updateEP.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'415': |
||||||
|
$ref: ../../responses/erreur/unsupportedMediaType.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
||||||
|
delete: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: deleteEP |
||||||
|
description: Annuler/Supprimer un EP d’un collaborateur. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idEP.yaml |
||||||
|
responses: |
||||||
|
'204': |
||||||
|
$ref: ../../responses/ep/deleteEp.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -0,0 +1,24 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: rappelSignature |
||||||
|
description : Effectuer un rappel de signature. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idEP.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/rappelSignature.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
||||||
|
|
||||||
|
|
@ -0,0 +1,22 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: getEPEnCoursCollaborateurParticipant |
||||||
|
description: Récupérer les informations des EP en cours auxquels le collaborateur est participant. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idCollaborateur.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/getListeEpInformation.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -0,0 +1,22 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: getEPEnCoursCollaborateurParticipantCount |
||||||
|
description: Récupérer le nombre total d’informations des EP en cours auxquels le collaborateur est participant. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idCollaborateur.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/getCountEp.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -0,0 +1,22 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: getEPSaisieCollaborateur |
||||||
|
description: Récupérer l’EP à saisir d’un collaborateur. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idCollaborateur.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/saisirProchainEP.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -0,0 +1,28 @@ |
|||||||
|
put: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: updateEPSaisie |
||||||
|
description: Sauvegarder une saisie EP. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idEP.yaml |
||||||
|
requestBody: |
||||||
|
$ref: ../../requestbodies/saisieEP.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/updateSaisieEp.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'415': |
||||||
|
$ref: ../../responses/erreur/unsupportedMediaType.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
||||||
|
|
@ -0,0 +1,22 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: getEPSaisieReferent |
||||||
|
description: Récupérer l’EP à saisir d’un référent. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idEP.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/saisirProchainEP.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -0,0 +1,26 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: getEPSignesCount |
||||||
|
description: Récupérer le nombre total d’EP signés. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/query/idBUs.yaml |
||||||
|
- $ref: ../../parameters/query/asc.yaml |
||||||
|
- $ref: ../../parameters/query/numPage.yaml |
||||||
|
- $ref: ../../parameters/query/parPage.yaml |
||||||
|
- $ref: ../../parameters/query/texte.yaml |
||||||
|
- $ref: ../../parameters/query/tri.yaml |
||||||
|
- $ref: ../../parameters/query/dateDebut.yaml |
||||||
|
- $ref: ../../parameters/query/dateFin.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/getCountEp.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -0,0 +1,22 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: getEPSignesCollaborateur |
||||||
|
description: Récupérer la liste des EP signés d’un collaborateur. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idCollaborateur.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/getListeEpInformation.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -0,0 +1,29 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: getEPSignesReferent |
||||||
|
description: Récupérer la liste des EP signés qu’un référent à fait passer. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idReferent.yaml |
||||||
|
- $ref: ../../parameters/query/asc.yaml |
||||||
|
- $ref: ../../parameters/query/numPage.yaml |
||||||
|
- $ref: ../../parameters/query/parPage.yaml |
||||||
|
- $ref: ../../parameters/query/texte.yaml |
||||||
|
- $ref: ../../parameters/query/tri.yaml |
||||||
|
- $ref: ../../parameters/query/dateDebut.yaml |
||||||
|
- $ref: ../../parameters/query/dateFin.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/getListeEpInformation.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -0,0 +1,29 @@ |
|||||||
|
get: |
||||||
|
tags: |
||||||
|
- ep |
||||||
|
operationId: getEPSignesReferentCount |
||||||
|
description: Récupérer le nombre total d’EP signés qu’un référent à fait passer. |
||||||
|
parameters: |
||||||
|
- $ref: ../../parameters/path/idReferent.yaml |
||||||
|
- $ref: ../../parameters/query/asc.yaml |
||||||
|
- $ref: ../../parameters/query/numPage.yaml |
||||||
|
- $ref: ../../parameters/query/parPage.yaml |
||||||
|
- $ref: ../../parameters/query/texte.yaml |
||||||
|
- $ref: ../../parameters/query/tri.yaml |
||||||
|
- $ref: ../../parameters/query/dateDebut.yaml |
||||||
|
- $ref: ../../parameters/query/dateFin.yaml |
||||||
|
responses: |
||||||
|
'200': |
||||||
|
$ref: ../../responses/ep/getCountEp.yaml |
||||||
|
|
||||||
|
'401': |
||||||
|
$ref: ../../responses/erreur/unauthorized.yaml |
||||||
|
|
||||||
|
'403': |
||||||
|
$ref: ../../responses/erreur/forbidden.yaml |
||||||
|
|
||||||
|
'404': |
||||||
|
$ref: ../../responses/erreur/notFound.yaml |
||||||
|
|
||||||
|
'500': |
||||||
|
$ref: ../../responses/erreur/internalServerError.yaml |
@ -1,22 +0,0 @@ |
|||||||
get: |
|
||||||
tags: |
|
||||||
- ep |
|
||||||
operationId: getEPByCollaborateur |
|
||||||
description: Récupérer la liste des EP d'un collaborateur |
|
||||||
parameters: |
|
||||||
- $ref: ../../parameters/query/asc.yaml |
|
||||||
- $ref: ../../parameters/path/idCollaborateur.yaml |
|
||||||
- $ref: ../../parameters/query/numPage.yaml |
|
||||||
- $ref: ../../parameters/query/parPage.yaml |
|
||||||
- $ref: ../../parameters/query/statutEP.yaml |
|
||||||
- $ref: ../../parameters/query/texte.yaml |
|
||||||
- $ref: ../../parameters/query/tri.yaml |
|
||||||
responses: |
|
||||||
'200': |
|
||||||
$ref: ../../responses/ep/getListeEP.yaml |
|
||||||
|
|
||||||
'403': |
|
||||||
$ref: ../../responses/erreur/forbidden.yaml |
|
||||||
|
|
||||||
'404': |
|
||||||
$ref: ../../responses/erreur/notFound.yaml |
|
@ -1,17 +0,0 @@ |
|||||||
get: |
|
||||||
tags: |
|
||||||
- ep |
|
||||||
operationId: getEPById |
|
||||||
description: Récupérer un EP par son id |
|
||||||
parameters: |
|
||||||
- $ref: ../../parameters/path/idEP.yaml |
|
||||||
responses: |
|
||||||
'200': |
|
||||||
$ref: ../../responses/ep/getEP.yaml |
|
||||||
|
|
||||||
'403': |
|
||||||
$ref: ../../responses/erreur/forbidden.yaml |
|
||||||
|
|
||||||
'404': |
|
||||||
$ref: ../../responses/erreur/notFound.yaml |
|
||||||
|
|
@ -1,22 +0,0 @@ |
|||||||
get: |
|
||||||
tags: |
|
||||||
- ep |
|
||||||
operationId: getEPByReferent |
|
||||||
description: Récupérer la liste de tous les EP fait passer par le référent |
|
||||||
parameters: |
|
||||||
- $ref: ../../parameters/query/asc.yaml |
|
||||||
- $ref: ../../parameters/path/idReferent.yaml |
|
||||||
- $ref: ../../parameters/query/numPage.yaml |
|
||||||
- $ref: ../../parameters/query/parPage.yaml |
|
||||||
- $ref: ../../parameters/query/texte.yaml |
|
||||||
- $ref: ../../parameters/query/tri.yaml |
|
||||||
|
|
||||||
responses: |
|
||||||
'200': |
|
||||||
$ref: ../../responses/ep/getListeEP.yaml |
|
||||||
|
|
||||||
'403': |
|
||||||
$ref: ../../responses/erreur/forbidden.yaml |
|
||||||
|
|
||||||
'404': |
|
||||||
$ref: ../../responses/erreur/notFound.yaml |
|
@ -1,16 +0,0 @@ |
|||||||
get: |
|
||||||
tags: |
|
||||||
- ep |
|
||||||
operationId: getProchainEPCollaborateur |
|
||||||
description: Récupérer les détails sur quand aura lieu le prochain EP du collaborateur |
|
||||||
parameters: |
|
||||||
- $ref: ../../parameters/path/idCollaborateur.yaml |
|
||||||
responses: |
|
||||||
'200': |
|
||||||
$ref: ../../responses/ep/getProchainEP.yaml |
|
||||||
|
|
||||||
'403': |
|
||||||
$ref: ../../responses/erreur/forbidden.yaml |
|
||||||
|
|
||||||
'404': |
|
||||||
$ref: ../../responses/erreur/notFound.yaml |
|
@ -1,21 +0,0 @@ |
|||||||
get: |
|
||||||
tags: |
|
||||||
- ep |
|
||||||
operationId: getProchainsEPByReferent |
|
||||||
description: Récupérer la liste de tous les prochaines EP que fera passer le référent |
|
||||||
parameters: |
|
||||||
- $ref: ../../parameters/query/asc.yaml |
|
||||||
- $ref: ../../parameters/path/idReferent.yaml |
|
||||||
- $ref: ../../parameters/query/numPage.yaml |
|
||||||
- $ref: ../../parameters/query/parPage.yaml |
|
||||||
- $ref: ../../parameters/query/texte.yaml |
|
||||||
- $ref: ../../parameters/query/tri.yaml |
|
||||||
responses: |
|
||||||
'200': |
|
||||||
$ref: ../../responses/ep/getListeEP.yaml |
|
||||||
|
|
||||||
'403': |
|
||||||
$ref: ../../responses/erreur/forbidden.yaml |
|
||||||
|
|
||||||
'404': |
|
||||||
$ref: ../../responses/erreur/notFound.yaml |
|
@ -1,16 +0,0 @@ |
|||||||
get: |
|
||||||
tags: |
|
||||||
- ep |
|
||||||
operationId: rappelSignature |
|
||||||
description : Faire un rappel de signature EP |
|
||||||
parameters: |
|
||||||
- $ref: ../../parameters/path/idEP.yaml |
|
||||||
responses: |
|
||||||
'201': |
|
||||||
$ref: ../../responses/ep/rappelSignature.yaml |
|
||||||
|
|
||||||
'403': |
|
||||||
$ref: ../../responses/erreur/forbidden.yaml |
|
||||||
|
|
||||||
'404': |
|
||||||
$ref: ../../responses/erreur/notFound.yaml |
|
@ -1,16 +0,0 @@ |
|||||||
get: |
|
||||||
tags: |
|
||||||
- ep |
|
||||||
operationId: saisieProchainEP |
|
||||||
description: Récupérer le prochain EP du collaborateur dans le but de le saisir |
|
||||||
parameters: |
|
||||||
- $ref: ../../parameters/path/idCollaborateur.yaml |
|
||||||
responses: |
|
||||||
'200': |
|
||||||
$ref: ../../responses/ep/saisirProchainEP.yaml |
|
||||||
|
|
||||||
'403': |
|
||||||
$ref: ../../responses/erreur/forbidden.yaml |
|
||||||
|
|
||||||
'404': |
|
||||||
$ref: ../../responses/erreur/notFound.yaml |
|
@ -1,15 +0,0 @@ |
|||||||
put: |
|
||||||
tags: |
|
||||||
- ep |
|
||||||
operationId: updateEP |
|
||||||
description: Mettre à jour l'EP déjà saisie |
|
||||||
parameters: |
|
||||||
- $ref: ../../parameters/path/idEP.yaml |
|
||||||
requestBody: |
|
||||||
$ref: ../../requestbodies/ep.yaml |
|
||||||
responses: |
|
||||||
'200': |
|
||||||
$ref: ../../responses/ep/updateEP.yaml |
|
||||||
|
|
||||||
'403': |
|
||||||
$ref: ../../responses/erreur/forbidden.yaml |
|
@ -1,15 +0,0 @@ |
|||||||
put: |
|
||||||
tags: |
|
||||||
- ep |
|
||||||
operationId: updateSaisieEP |
|
||||||
description: Poursuivre le processus de l'EP ou bien seulement sauvegarder les modifications |
|
||||||
parameters: |
|
||||||
- $ref: ../../parameters/path/idEP.yaml |
|
||||||
requestBody: |
|
||||||
$ref: ../../requestbodies/saisieEP.yaml |
|
||||||
responses: |
|
||||||
'200': |
|
||||||
$ref: ../../responses/ep/updateEP.yaml |
|
||||||
|
|
||||||
'403': |
|
||||||
$ref: ../../responses/erreur/forbidden.yaml |
|
@ -0,0 +1 @@ |
|||||||
|
description: EP supprimé avec succès |
@ -0,0 +1 @@ |
|||||||
|
description: EP supprimés avec succès |
@ -0,0 +1,7 @@ |
|||||||
|
description: OK |
||||||
|
content: |
||||||
|
application/json: |
||||||
|
schema: |
||||||
|
type: integer |
||||||
|
format: int64 |
||||||
|
description: Nombre total d’EP. |
@ -0,0 +1,5 @@ |
|||||||
|
description: OK |
||||||
|
content: |
||||||
|
application/json: |
||||||
|
schema: |
||||||
|
$ref: ../../schemas/ep/epInformations.yaml |
@ -1 +1 @@ |
|||||||
description: Notification de rappel envoyé |
description: Ok |
@ -0,0 +1,5 @@ |
|||||||
|
description: EP sauvegardé avec succès |
||||||
|
content: |
||||||
|
application/json: |
||||||
|
schema: |
||||||
|
$ref: ../../schemas/ep/epSaisie.yaml |
@ -1 +1,5 @@ |
|||||||
description: EP mise à jour avec succès |
description: Informations de l’EP modifiées avec succès |
||||||
|
content: |
||||||
|
application/json: |
||||||
|
schema: |
||||||
|
$ref: ../../schemas/ep/ep.yaml |
Loading…
Reference in new issue