GET api/Icd10PcsTable/GetIcd10PcsOperations?section={section}&body={body}

List all the operations associated with the specified section and body names in the ICD-10-PCS XML file.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
section

Section name.

string

Required

body

body name.

string

Required

Body Parameters

None.

Response Information

Resource Description

OperationList
NameDescriptionTypeAdditional information
operations

Collection of OperationModel

None.

Response Formats

application/json, text/json

Sample:
{
  "operations": [
    {
      "name": "sample string 1",
      "desc": "sample string 2",
      "definition": "sample string 3"
    },
    {
      "name": "sample string 1",
      "desc": "sample string 2",
      "definition": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<OperationList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MediProvider.Models">
  <operations>
    <OperationModel>
      <definition>sample string 3</definition>
      <desc>sample string 2</desc>
      <name>sample string 1</name>
    </OperationModel>
    <OperationModel>
      <definition>sample string 3</definition>
      <desc>sample string 2</desc>
      <name>sample string 1</name>
    </OperationModel>
  </operations>
</OperationList>