Initiating Registration Request

Overview

Once all required information is collected, the registration request must be initiated through our API.

More technical details about implementing this service can be found at this link.


Constant Attributes

The following attributes in the request body must be sent with constant values, as they are not used for implementing EHR or electronic prescription functionalities:

  • provider_type: The value should be DOCTOR.
  • entity_type: The value should be NATURAL.
  • external_registry: The value should be false.
  • electronic_invoice_enabled: The value should be false.

Additional Attributes

There are other attributes required for submission. Please contact the integrations team to determine the correct values expected by Osigu:

  • time_zone
  • locale

Example: Registration Request for a Physician in Spain

Below is an example request for initiating registration for a physician practicing in Spain:

curl --location --request POST 'http://sandbox.osigu.com/v1/providers/v2/registration-requests' \
--header 'Authorization: Bearer a22b3664-9c16-4c38-9dc3-f8e3a5b52e68' \
--header 'Content-Type: application/json' \
--data-raw '{
    "given_names": "Jose Eduardo",
    "first_surname": "López",
    "second_surname": "García",
    "identity_document_type": "NATIONAL_IDENTITY_CARD",
    "identity_document_value": "44291577V",
    "identity_document_expiration_date": "2023-04-01",
    "email_address": "[email protected]",
    "physical_address": "Av. de la Verbena de la Paloma, 10, 28041",
    "country_code": "ES",
    "state_name": "Madrid",
    "city_name": "Madrid",
    "city_subdivision_name": "Quijorna",
    "phone_area_code": "+37",
    "phone_number": "93023993",
    "main_specialty_name": "Médico General",
    "medical_license_verification_institution_slug": "es-omc",
    "medical_issuing_institution": "Colegio Oficial de Médicos de Bizkaia",
    "medical_license_number": "228499889",
    "salutation": "Dr.",
    "provider_type": "DOCTOR",
    "entity_type": "NATURAL",
    "external_registry": false,
    "electronic_invoice_enabled": false,
    "time_zone": "Europe/Madrid",
    "locale": "es_ES"
}'

Successful Registration Response

If the registration request is successful, you will receive a UUID. This UUID will be required for:

  1. Attaching supporting documents.
  2. Performing video validation through our web portal.