signup_code
(text): Required. The signup code for registration. You can get it from practice configuration.
first_name
(text): Required. The first name of the provider.
middle_name
(text): Optional. The middle name of the provider.
last_name
(text): Optional. The last name of the provider.
email_id
(text): The email address of the provider. Required if phone1 is not present in request body.
email_id_alt
(text): Optional. The alternative email address of the provider.
password
(text): Required. The password of the provider.
country_code_phone1
(text): The country code for the provider's phone number. Required if phone1 field is present in the request body.
phone1
(text): The phone number of the provider. Required if email_id is not present in the request.
country_code_phone2
(text): Optional. The country code for the provider's alternative phone number. Required if phone2 is present in the request.
phone2
(text): Optional. The alternative phone number of the provider.
gender
(text): Optional. Gender of the provider. Must be In "male" or "female" or "prefer_not_to_say".
birth_date
(date): Optional. The birth date of the provider. Must be in "YYYY-MM-DD" format if present.
language
(text): Optional. The locale code (must be in "en", "es", "it", "pt-BR", "fr-ca", "ar", "gu") of the provider's language.
addr1
(text): Optional. Address line 1 of the provider.
addr2
(text): Optional. Address line 2 of the provider.
city
(text): Optional. City of the provider.
state
(text): Optional. State of the provider.
post_code
(text): Optional. Zip code or postal code of the provider.
{
"signup_code": "ABCD123",
"first_name": "John",
"middle_name": "Richard",
"last_name": "Doe",
"email_id": "john.doe@example.com",
"email_id_alt": "john.richard@example.com",
"country_code_phone1": "+1",
"phone1": "1234567890",
"country_code_phone2": "+1",
"phone2": "9876543210",
"password": "Any@Random$String",
"gender": "male",
"birth_date": "1980-01-01",
"language": "en",
"addr1": "123",
"addr2": "My Street",
"city": "Kingston",
"state": "New York",
"country": "USA",
"post_code": "12401"
}
{
"error": false,
"input_data": {
"message": "Provider created successfully",
"id": "202400001710",
"user_type": "provider",
"first_name": "John",
"middle_name": "Richard",
"last_name": "Doe",
"email_id": "john.doe@example.com",
"email_id_alt": "john.richard@example.com",
"country_code_phone1": "+1",
"phone1": "1234567890",
"country_code_phone2": "+1",
"phone2": "9876543210",
"gender": "male",
"birth_date": "1980-01-01",
"addr1": "123",
"addr2": "My Street",
"city": "Kingston",
"state": "New York",
"country": "USA",
"post_code": "12401"
}
}