Fee Schedule Effective Dates

Create FeeSchedEffDate

Creates a new FeeSchedEffDate

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
feeSched
required
string

Fee Sched

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
fee_Sched
required
string [ 1 .. 8 ] characters

Unique name given to the Fee Scheudle.

effective_Date
required
string <date-time>

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

Responses
200

Success

401

Unauthorized

post/fee-schedules/{feeSched}/effective-dates
Request samples
{
  • "fee_Sched": "string",
  • "effective_Date": "2019-08-24T14:15:22Z"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

List FeeSchedEffDate

Lists all FeeSchedEffDate for the given feeSched

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
feeSched
required
string

Fee Sched

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-schedules/{feeSched}/effective-dates
Request samples
Response samples
No sample

Get FeeSchedEffDate

Gets FeeSchedEffDate

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
feeSched
required
string

Fee Sched

effectiveDate
required
string <date-time>

Effective Date

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/fee-schedules/{feeSched}/effective-dates/{effectiveDate}
Request samples
Response samples
No sample

Delete FeeSchedEffDate

Deletes an FeeSchedEffDate

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
feeSched
required
string

Fee Sched

effectiveDate
required
string <date-time>

Effective Date

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/fee-schedules/{feeSched}/effective-dates/{effectiveDate}
Request samples

Create Batch FeeSchedEffDate

Create multiple FeeSchedEffDate at once. If the entity does not exist, it will be created. If the entity exists, an error message will be returned for that id.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
feeSched
required
string

Fee Sched

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
Array
fee_Sched
required
string [ 1 .. 8 ] characters

Unique name given to the Fee Scheudle.

effective_Date
required
string <date-time>

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

Responses
207

Success

401

Unauthorized

put/fee-schedules/{feeSched}/effective-dates-batch
Request samples
[
  • {
    }
]
Response samples
{
  • "data": [
    ],
  • "error": {
    },
  • "debug": {
    }
}