POST api/Provider/Patient/PatientBillingDetails

Request Information

URI Parameters

None.

Body Parameters

PatientBillingDetailsViewModel
NameDescriptionTypeAdditional information
ID

integer

None.

PatientID

integer

None.

TimeInSeconds

integer

Range: inclusive between 1 and 86400

ReviewerID

string

None.

ReviewerType

byte

None.

ReviewDate

date

None.

DurationAdjustedType

byte

None.

InteractionType

byte

None.

AccessAppType

byte

None.

ServiceTypeID

integer

None.

Notes

string

String length: inclusive between 0 and 500

IsIncluded

boolean

None.

CreatedBy

string

None.

CreatedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "PatientID": 2,
  "TimeInSeconds": 3,
  "ReviewerID": "sample string 4",
  "ReviewerType": 64,
  "ReviewDate": "2025-05-17T17:19:48.7196149+00:00",
  "DurationAdjustedType": 64,
  "InteractionType": 64,
  "AccessAppType": 64,
  "ServiceTypeID": 9,
  "Notes": "sample string 10",
  "IsIncluded": true,
  "CreatedBy": "sample string 12",
  "CreatedDate": "2025-05-17T17:19:48.7196149+00:00"
}

application/xml, text/xml

Sample:
<PatientBillingDetailsViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Consensus.Ortho.Services.ViewModels.PatientsViewModels">
  <AccessAppType>64</AccessAppType>
  <CreatedBy>sample string 12</CreatedBy>
  <CreatedDate>2025-05-17T17:19:48.7196149+00:00</CreatedDate>
  <DurationAdjustedType>64</DurationAdjustedType>
  <ID>1</ID>
  <InteractionType>64</InteractionType>
  <IsIncluded>true</IsIncluded>
  <Notes>sample string 10</Notes>
  <PatientID>2</PatientID>
  <ReviewDate>2025-05-17T17:19:48.7196149+00:00</ReviewDate>
  <ReviewerID>sample string 4</ReviewerID>
  <ReviewerType>64</ReviewerType>
  <ServiceTypeID>9</ServiceTypeID>
  <TimeInSeconds>3</TimeInSeconds>
</PatientBillingDetailsViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ActionResultViewModelOfString
NameDescriptionTypeAdditional information
StatusCode

integer

None.

Success

boolean

None.

Message

string

None.

Result

string

None.

Response Formats

application/json, text/json

Sample:
{
  "StatusCode": 1,
  "Success": true,
  "Message": "sample string 3",
  "Result": "sample string 4"
}

application/xml, text/xml

Sample:
<ActionResultViewModelOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Consensus.Ortho.Web.ViewModels.ResultViewModels">
  <Message>sample string 3</Message>
  <Result>sample string 4</Result>
  <StatusCode>1</StatusCode>
  <Success>true</Success>
</ActionResultViewModelOfstring>