DRG Weight

Create DRGWeight

Creates a new DRGWeight

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
drgSchedule
required
string

DRG Schedule

drgCode
required
string

DRG Code

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
drG_Schedule
required
string [ 1 .. 16 ] characters

Identifier for DRG Schedule

drG_Code
required
string [ 1 .. 8 ] characters

Code identifying a specific DRG

effective_Date
required
string <date-time>

Date the DRG Schedule becomes effective

term_Date
string or null <date-time>

Date the DRG Schedule terminates

weight
number or null <double>

Weight that is applied to the specified DRG

Responses
200

Success

401

Unauthorized

post/drg-schedules/{drgSchedule}/drg-codes/{drgCode}/drg-weights
Request samples
{
  • "drG_Schedule": "string",
  • "drG_Code": "string",
  • "effective_Date": "2019-08-24T14:15:22Z",
  • "term_Date": "2019-08-24T14:15:22Z",
  • "weight": 0.1
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

List DRGWeights

List DRGWeights for a specific DRG Schedule and DRG Code

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
drgSchedule
required
string

DRG Schedule

drgCode
required
string

DRG Code

query Parameters
page
integer <int32>
Default: 1

Page

pageSize
integer <int32>
Default: 100

Page Size

sortBy
string

Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., 'Property1:desc,Property2:asc,Property3:asc' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/drg-schedules/{drgSchedule}/drg-codes/{drgCode}/drg-weights
Request samples
Response samples
No sample

Get DRGWeight

Gets DRGWeight

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
drgSchedule
required
string

DRG Schedule

drgCode
required
string

DRG Code

effectiveDate
required
string <date-time>

Effective Date

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/drg-schedules/{drgSchedule}/drg-codes/{drgCode}/drg-weights/{effectiveDate}
Request samples
Response samples
No sample

Update DRGWeight

Updates a specific DRGWeight.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
drgSchedule
required
string

DRG Schedule

drgCode
required
string

DRG Code

effectiveDate
required
string <date-time>

Effective Date

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
drG_Schedule
required
string [ 1 .. 16 ] characters

Identifier for DRG Schedule

drG_Code
required
string [ 1 .. 8 ] characters

Code identifying a specific DRG

effective_Date
required
string <date-time>

Date the DRG Schedule becomes effective

term_Date
string or null <date-time>

Date the DRG Schedule terminates

weight
number or null <double>

Weight that is applied to the specified DRG

Responses
200

Success

401

Unauthorized

put/drg-schedules/{drgSchedule}/drg-codes/{drgCode}/drg-weights/{effectiveDate}
Request samples
{
  • "drG_Schedule": "string",
  • "drG_Code": "string",
  • "effective_Date": "2019-08-24T14:15:22Z",
  • "term_Date": "2019-08-24T14:15:22Z",
  • "weight": 0.1
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

Delete DRGWeight

Deletes an DRGWeight

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
drgSchedule
required
string

DRG Schedule

drgCode
required
string

DRG Code

effectiveDate
required
string <date-time>

Effective Date

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/drg-schedules/{drgSchedule}/drg-codes/{drgCode}/drg-weights/{effectiveDate}
Request samples

Create or Update Batch DRGWeight

Create or Update multiple DRGWeight at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
drgSchedule
required
string

DRG Schedule

drgCode
required
string

DRG Code

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
Array
drG_Schedule
required
string [ 1 .. 16 ] characters

Identifier for DRG Schedule

drG_Code
required
string [ 1 .. 8 ] characters

Code identifying a specific DRG

effective_Date
required
string <date-time>

Date the DRG Schedule becomes effective

term_Date
string or null <date-time>

Date the DRG Schedule terminates

weight
number or null <double>

Weight that is applied to the specified DRG

Responses
207

Success

401

Unauthorized

put/drg-schedules/{drgSchedule}/drg-codes/{drgCode}/drg-weights-batch
Request samples
[
  • {
    }
]
Response samples
{
  • "data": [
    ],
  • "error": {
    },
  • "debug": {
    }
}