GET  secure.medicapp.ids.host/cloud/partner/v5
Créer un compte développeur →
GET /cloud/partner/v5/records/{recordUuid}

Dossier complet

Retourne le dossier médical complet incluant réponses et scores. partner:medical

🔐
Nécessite le scope partner:medical. Sans ce scope : 403 Forbidden. Demander la qualification →
curl
curl https://secure.medicapp.ids.host/cloud/partner/v5/records/{recordUuid} \
  -H "Authorization: Bearer sk_live_VOTRE_CLE_MEDICALE"
json200 OK
{
  "recordUuid": "rec_xxxxxxxxxxx",
  "patientUuid": "pat_xxxxxxxxxxx",
  "status": "VALIDATED",
  "validatedAt": "2026-04-28T16:00:00Z",
  "questionnaires": [
    {
      "uuid": "qst_xxxx",
      "title": "Questionnaire initial",
      "completedAt": "2026-04-10T09:15:00Z",
      "answers": [
        { "questionCode": "KOOS_PAIN_1", "value": "3" },
        { "questionCode": "KOOS_PAIN_2", "value": "2" }
      ],
      "scores": [
        { "name": "KOOS Total", "value": 67.4, "interpretation": "Modéré" }
      ]
    }
  ]
}
ℹ️
En sandbox, utilisez sk_test_medical_demo pour tester.

GET /records/{uuid} partner:medical