Crear una orden
Al ser una API REST, cada método HTTP tiene el significado esperado, para realizar la creación se utiliza el método POST.
Los datos que se necesitan mandar para la creación incluyen:
Datos demográficos del paciente
Información sobre el estudio o procedimiento
Información de la unidad / sucursal donde se realizará el estudio
Información sobre el médico referente (Opcional)
Informacion del agendamiento (Opcional)
Creates a new order from the provided data.
Study identifier, assigned by the hospital. Max length is 80 characters. You can use 'accession_number' as an alias for this field.
Description of the order (reason for doing the study). Max length is 255 characters. You can use 'requested_procedure_description' as an alias for this field.
Unique facility identifier. Max length is 40 characters.
Modality identifier. Max length is 20 characters.
Order priorities (NORMAL, HIGHEST, URGENT). It is used to define the priority of an order.
The extra field API attribute allows you to send custom fields in JSON format ({'key': 'value'}) that are not available in the service, which can then be mapped in the study report.
Room AETITLE or slug.
Room name, it is an optional field, it is recommended to send it when the room_identifier is not sent
Study code (internal identifier). Max length is 20 characters.
The name of the study type. Max length is 255 characters.
Patient's unique identifier. Max length is 255 characters. You can use 'patient_id' as an alias for this field.
Patient's names. Max length is 255 characters.
Patient's principal surname. Max length is 255 characters.
Patient's second surname. Max length is 255 characters.
Patient's email. Max length is 80 characters.
Patient's gender (F, M, O). You can use 'patient_sex' as an alias for this field.
Patient's birthdate in ISO-8601 format. You can use 'patient_birthdate' as an alias for this field.
Phone code of the country to which the telephone number belongs according to the ISD standard. Max length is 3 characters.
Patient's phone number.
Referring physician's custom identifier.
Referring physician's name. Max length is 255 characters.
Referring physician's first surname. Max length is 255 characters.
Referring physician's last surname. Max length is 255 characters.
Referring physician's email. Identifier of the physician in our platform. Max length is 80 characters.
Referring physician's gender (F, M, O).
Phone code of the country to which the telephone number belongs according to the ISD standard. Max length is 3 characters.
Referring physician's phone number.
Practitioner's email. Identifier of the practitioner in our platform. Max length is 80 characters.
Date you want to create the appointment, datefield format: YYYY-MM-DD
Time you want to create the appointment, time format: HH:MM:SS, in 24 hour format
Duration of the appointment in minutes, for example 30
A successful response that returns the order details.
A failed response because the required parameters were not received.
A failed response due to insufficient permissions to execute the operation.
A failed response due to not having the proper permissions.
A failed response due to a server problem.
Last updated