Fee Schedule Modifier Discounts

Create FeeSchedModifierDiscount

Creates a new FeeSchedModifierDiscount

SecurityapiKeyAuth and bearerAuth
Request
header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
feeSchedModifierDiscount_Key
required
integer <int32>

Unique identifier assigned to the modifier discount. Note: The database will apply a default value of 0 for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of 0 to meet the API requirements and ensure that the functionality occurs as expected.

discount_Pct
number or null <double>

Percentage that the service line will be adjusted after it has been priced by the ‘Fee Schedule’.

discount_Seq
required
integer <int32>

Sequential identifier that determines the order of adjudication for each rule. (Seq. 01 will be applied first and so forth.) Note: The database will apply a default value of 0 for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of 0 to meet the API requirements and ensure that the functionality occurs as expected.

effective_Date
required
string <date-time>

Date when the discount will begin/began applying to claims. This date will be compared to the date of service on the claim.

entry_Date
string <date-time>

User that first added the record to the system.

entry_User
string or null <= 20 characters

Date when the record was first added to the system.

fee_Sched
required
string [ 1 .. 8 ] characters

Unique name given to the Fee Scheudle.

modifier1
string or null <= 8 characters

Identifies modifier codes that should receive the selected discount percentage.

modifier2
string or null <= 8 characters

Identifies modifier codes that should receive the selected discount percentage.

modifier3
string or null <= 8 characters

Identifies modifier codes that should receive the selected discount percentage.

modifier4
string or null <= 8 characters

Identifies modifier codes that should receive the selected discount percentage.

update_Date
string <date-time>

User that last updated the record in the system.

update_User
string or null <= 20 characters

Date when the record was last updated in the system.

Responses
200

Success

401

Unauthorized

post/fee-schedule-modifier-discounts
Request samples
{
  • "feeSchedModifierDiscount_Key": 0,
  • "discount_Pct": 0.1,
  • "discount_Seq": 0,
  • "effective_Date": "2019-08-24T14:15:22Z",
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "fee_Sched": "string",
  • "modifier1": "string",
  • "modifier2": "string",
  • "modifier3": "string",
  • "modifier4": "string",
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

List FeeSchedModifierDiscount

Lists all FeeSchedModifierDiscount

SecurityapiKeyAuth and bearerAuth
Request
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/fee-schedule-modifier-discounts
Request samples
Response samples
No sample

Get FeeSchedModifierDiscount

Gets FeeSchedModifierDiscount

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
feeSchedModifierDiscountKey
required
integer <int32>

FeeSchedModifierDiscount Key

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/fee-schedule-modifier-discounts/{feeSchedModifierDiscountKey}
Request samples
Response samples
No sample

Update FeeSchedModifierDiscount

Updates a specific FeeSchedModifierDiscount.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
feeSchedModifierDiscountKey
required
integer <int32>

FeeSchedModifierDiscount Key

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
feeSchedModifierDiscount_Key
required
integer <int32>

Unique identifier assigned to the modifier discount. Note: The database will apply a default value of 0 for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of 0 to meet the API requirements and ensure that the functionality occurs as expected.

discount_Pct
number or null <double>

Percentage that the service line will be adjusted after it has been priced by the ‘Fee Schedule’.

discount_Seq
required
integer <int32>

Sequential identifier that determines the order of adjudication for each rule. (Seq. 01 will be applied first and so forth.) Note: The database will apply a default value of 0 for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of 0 to meet the API requirements and ensure that the functionality occurs as expected.

effective_Date
required
string <date-time>

Date when the discount will begin/began applying to claims. This date will be compared to the date of service on the claim.

entry_Date
string <date-time>

User that first added the record to the system.

entry_User
string or null <= 20 characters

Date when the record was first added to the system.

fee_Sched
required
string [ 1 .. 8 ] characters

Unique name given to the Fee Scheudle.

modifier1
string or null <= 8 characters

Identifies modifier codes that should receive the selected discount percentage.

modifier2
string or null <= 8 characters

Identifies modifier codes that should receive the selected discount percentage.

modifier3
string or null <= 8 characters

Identifies modifier codes that should receive the selected discount percentage.

modifier4
string or null <= 8 characters

Identifies modifier codes that should receive the selected discount percentage.

update_Date
string <date-time>

User that last updated the record in the system.

update_User
string or null <= 20 characters

Date when the record was last updated in the system.

Responses
200

Success

401

Unauthorized

put/fee-schedule-modifier-discounts/{feeSchedModifierDiscountKey}
Request samples
{
  • "feeSchedModifierDiscount_Key": 0,
  • "discount_Pct": 0.1,
  • "discount_Seq": 0,
  • "effective_Date": "2019-08-24T14:15:22Z",
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "fee_Sched": "string",
  • "modifier1": "string",
  • "modifier2": "string",
  • "modifier3": "string",
  • "modifier4": "string",
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

Delete FeeSchedModifierDiscount

Deletes an FeeSchedModifierDiscount

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
feeSchedModifierDiscountKey
required
integer <int32>

FeeSchedModifierDiscount Key

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/fee-schedule-modifier-discounts/{feeSchedModifierDiscountKey}
Request samples

Create or Update Batch FeeSchedModifierDiscount

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

SecurityapiKeyAuth and bearerAuth
Request
header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
Array
feeSchedModifierDiscount_Key
required
integer <int32>

Unique identifier assigned to the modifier discount. Note: The database will apply a default value of 0 for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of 0 to meet the API requirements and ensure that the functionality occurs as expected.

discount_Pct
number or null <double>

Percentage that the service line will be adjusted after it has been priced by the ‘Fee Schedule’.

discount_Seq
required
integer <int32>

Sequential identifier that determines the order of adjudication for each rule. (Seq. 01 will be applied first and so forth.) Note: The database will apply a default value of 0 for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of 0 to meet the API requirements and ensure that the functionality occurs as expected.

effective_Date
required
string <date-time>

Date when the discount will begin/began applying to claims. This date will be compared to the date of service on the claim.

entry_Date
string <date-time>

User that first added the record to the system.

entry_User
string or null <= 20 characters

Date when the record was first added to the system.

fee_Sched
required
string [ 1 .. 8 ] characters

Unique name given to the Fee Scheudle.

modifier1
string or null <= 8 characters

Identifies modifier codes that should receive the selected discount percentage.

modifier2
string or null <= 8 characters

Identifies modifier codes that should receive the selected discount percentage.

modifier3
string or null <= 8 characters

Identifies modifier codes that should receive the selected discount percentage.

modifier4
string or null <= 8 characters

Identifies modifier codes that should receive the selected discount percentage.

update_Date
string <date-time>

User that last updated the record in the system.

update_User
string or null <= 20 characters

Date when the record was last updated in the system.

Responses
207

Success

401

Unauthorized

put/fee-schedule-modifier-discounts-batch
Request samples
[
  • {
    }
]
Response samples
{
  • "data": [
    ],
  • "error": {
    },
  • "debug": {
    }
}