POST api/v1/healthprofessional/update

Updates the information about the health profesional

Request Information

Headers

URI Parameters

None.

Body Parameters

HealthProfessionalDemographics
NameDescriptionTypeAdditional information
UserAccountId

Gets or sets the user account identifier.

integer

None.

HealthProfessional

Gets or sets the health professional.

HealthProfessional

None.

Person

Gets or sets the person.

Person

None.

Request Formats

application/json

Sample:
{
  "UserAccountId": 1,
  "HealthProfessional": {
    "HealthProfessionalId": "sample string 1",
    "Status": "sample string 2"
  },
  "Person": {
    "FirstName": "sample string 1",
    "LastName": "sample string 2",
    "Phone": "sample string 3",
    "MobilePhone": "sample string 4",
    "Email": "sample string 5",
    "Address": "sample string 6"
  }
}

Response Information

Headers

Resource Description

Response
NameDescriptionTypeAdditional information
Result

Result of the response

string

None.

Message

Additional information of the response

string

None.

Response Formats

application/json

Sample:
{
  "Result": "sample string 1",
  "Message": "sample string 2"
}