Gestion des individus en attente d'une formation
Présentation
Ce service permet de tester la gestion des individus en attente de formation.
Description de la requête
Point d'accès
POST https://api.emploi-store.fr/partenaire/zerosaisietest/v1/inscriptions/decision-attente-formation
Paramètres d'entrée
En-tête(s) | Valeur |
---|---|
Accept | application/json |
Content-Type | application/json |
Authorization | Bearer {{token_authentification}} |
Pe-fonc-apimode | production |
Code | Cardinalité | Format | Valeur attendue | Description |
---|---|---|---|---|
idRegionalDE | 1 | String 25 | 5160124F | Identifiant régional de l'individu |
codeGeoDE | 1 | String 3 | Caractères autorisés : [0-9]3 |
Code géographique de l'individu |
codeStatutInscription | 1 | String 3 | PFR |
Liste des valeurs possibles :
|
numeroFormation | 1 | String 25 | 20_1262663 | Numéro InterCarif de la formation |
numeroAction | 1 | String 25 | 20_1330305 | Numéro InterCarif de l'action de formation |
numeroSession | 1 | String 25 | 1330305 | Numéro InterCarif de la session de formation |
Description de la réponse
Données retournées
Code | Cardinalité | Format | Description |
---|---|---|---|
apercuSessionFormation | 1 | Sous-balise | |
numeroAction | 1 | String 25 | Numéro InterCarif de l'action de formation |
numeroFormation | 1 | String 25 | Numéro InterCarif de la formation |
numeroSession | 1 | String 25 | Numéro InterCarif de la session de formation |
codeStatutInscription | 1 | String 3 | Le résultat suite à la saisie.
Liste des valeurs possibles :
|
idNationalDE | 1 | String 255 | Identifiant national crypté de l'individu |
idProjetAction | 1 | String 12 | Identifiant du projet de formation (EFO) |
listeModules | 1..11 | Sous-balise | |
dateDebutPeriode | 1 | DATE au format aaaa-mm-jj | Date de début du module de l'individu |
dateFinPeriode | 1 | DATE au format aaaa-mm-jj | Date de fin du module de l'individu |
numPeriode | 1 | Integer | Numéro du module de formation |
Exemples
Cas 1 – Réserver place ferme
Appel
POST /zerosaisietest/v1/inscriptions/decision-attente-formation HTTP/1.1
Host: https://api.emploi-store.fr/partenaire
Accept: application/json
Authorization: Bearer {{token}}
Content-Type: application/json
pe-fonc-apimode: production
{
"idRegionalDE" : "5160124F",
"codeGeoDE" : "049",
"codeStatutInscription": "PFR",
"numeroFormation": "20_1262663",
"numeroAction": "20_1330305",
"numeroSession": "1330305"
}
Retour : HTTP 200 OK
{
"apercuSessionFormation": {
"numeroAction": "20_1330305",
"numeroFormation": "20_1262663",
"numeroSession": "1330305"
},
"codeStatutInscription": "AIE",
"idNationalDE": "DkZNY2zBt1fzydND6YGH_18A8UCXg6vXM_WKkx5j8UQ",
"idProjetAction": "EFO20190813A",
"listeModules": [
{
"dateDebutPeriode": "2020-04-06T00:00:00+02:00",
"dateFinPeriode": "2020-06-02T00:00:00+02:00",
"numeroPeriode": 1
},
{
"dateDebutPeriode": "2020-06-20T00:00:00+02:00",
"dateFinPeriode": "2020-08-06T00:00:00+02:00",
"numeroPeriode": 2
}
]
}