GET api/EncounterType/ListAllEncounterTypes?patientId={patientId}&accountId={accountId}&encounterTypeName={encounterTypeName}

This method to Get All Encounter Types based on encounter

Request Information

URI Parameters

NameDescriptionTypeAdditional information
patientId

Guid uniqueid (Required)

globally unique identifier

Required

accountId

Guid uniqueid (Required)

globally unique identifier

Required

encounterTypeName

string data (optional)

string

Required

Body Parameters

None.

Response Information

Resource Description

List All Encounter based on Encounter Types

Collection of ListEncounterType
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

Description

string

None.

Icon

string

None.

EncounterId

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "fb2f09cd-98e6-4090-8e41-e911e9467e51",
    "Name": "sample string 1",
    "Description": "sample string 2",
    "Icon": "sample string 3",
    "EncounterId": "06423af9-4f79-4088-94f3-02da832f9a53"
  },
  {
    "Id": "fb2f09cd-98e6-4090-8e41-e911e9467e51",
    "Name": "sample string 1",
    "Description": "sample string 2",
    "Icon": "sample string 3",
    "EncounterId": "06423af9-4f79-4088-94f3-02da832f9a53"
  }
]