curl -X GET "https://api.vidaplus.com/prescricoes/?offset=0&limit=20" \ -H "Authorization: Bearer YOUR_TOKEN"
{ "prescricoes": [ { "id": 2, "data": "2025-04-29", "paciente_id": 1, "profissional_id": 2, "tipo_prescricao": "MEDICACAO_CONTINUA", "medicamentos": "Losartana 50mg, 1x ao dia", "observacao": "Uso contínuo para hipertensão" }, { "id": 1, "data": "2025-04-28", "paciente_id": 1, "profissional_id": 2, "tipo_prescricao": "ANTIBIOTICO", "medicamentos": "Amoxicilina 500mg, 3x ao dia por 7 dias", "observacao": "Tomar após as refeições" } ]}
Prescriptions
List Prescriptions
Retrieve a paginated list of prescriptions
GET
/
prescricoes
curl -X GET "https://api.vidaplus.com/prescricoes/?offset=0&limit=20" \ -H "Authorization: Bearer YOUR_TOKEN"
{ "prescricoes": [ { "id": 2, "data": "2025-04-29", "paciente_id": 1, "profissional_id": 2, "tipo_prescricao": "MEDICACAO_CONTINUA", "medicamentos": "Losartana 50mg, 1x ao dia", "observacao": "Uso contínuo para hipertensão" }, { "id": 1, "data": "2025-04-28", "paciente_id": 1, "profissional_id": 2, "tipo_prescricao": "ANTIBIOTICO", "medicamentos": "Amoxicilina 500mg, 3x ao dia por 7 dias", "observacao": "Tomar após as refeições" } ]}
Retrieves a list of prescriptions ordered by date (most recent first). Non-superuser users will only see prescriptions where they are either the patient or the healthcare professional.