Benefit Specialties

Create BenefitSpecialty

Creates a new BenefitSpecialty

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
benefitCode
required
string

Benefit Code

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
benefit_Code
required
string [ 1 .. 10 ] characters

References the BenefitCodes.Benefit_Code from the parent table.

specialty_Code
required
string [ 1 .. 10 ] characters

Specifies the Provider specialty that the User wishes to either include or exclude as part of the benefit.

entry_Date
string <date-time>

Date when the record was added to the system.

entry_User
string or null <= 20 characters

User that first added the record to the system.

exclude
required
boolean

Indicates whether the specified code is included or excluded. Note: This field is marked as NOT NULL in the database and therefore required by the API.

update_Date
string <date-time>

Date when the record was last updated in the system.

update_User
string or null <= 20 characters

User that last updated the record in the system.

Responses
200

Success

401

Unauthorized

post/benefits/{benefitCode}/specialty-codes
Request samples
{
  • "benefit_Code": "string",
  • "specialty_Code": "string",
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "exclude": true,
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

List BenefitSpecialty

Lists all BenefitSpecialty benefitCode

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
benefitCode
required
string

Benefit Code

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/benefits/{benefitCode}/specialty-codes
Request samples
Response samples
No sample

Get BenefitSpecialty

Gets BenefitSpecialty

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
benefitCode
required
string

Benefit Code

specialtyCode
required
string

Specialty Code

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/benefits/{benefitCode}/specialty-codes/{specialtyCode}
Request samples
Response samples
No sample

Update BenefitSpecialty

Updates a specific BenefitSpecialty.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
benefitCode
required
string

Benefit Code

specialtyCode
required
string

Specialty Code

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
benefit_Code
required
string [ 1 .. 10 ] characters

References the BenefitCodes.Benefit_Code from the parent table.

specialty_Code
required
string [ 1 .. 10 ] characters

Specifies the Provider specialty that the User wishes to either include or exclude as part of the benefit.

entry_Date
string <date-time>

Date when the record was added to the system.

entry_User
string or null <= 20 characters

User that first added the record to the system.

exclude
required
boolean

Indicates whether the specified code is included or excluded. Note: This field is marked as NOT NULL in the database and therefore required by the API.

update_Date
string <date-time>

Date when the record was last updated in the system.

update_User
string or null <= 20 characters

User that last updated the record in the system.

Responses
200

Success

401

Unauthorized

put/benefits/{benefitCode}/specialty-codes/{specialtyCode}
Request samples
{
  • "benefit_Code": "string",
  • "specialty_Code": "string",
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "exclude": true,
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

Delete BenefitSpecialty

Deletes an BenefitSpecialty

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
benefitCode
required
string

Benefit Code

specialtyCode
required
string

Specialty Code

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/benefits/{benefitCode}/specialty-codes/{specialtyCode}
Request samples

Create or Update Batch BenefitSpecialty

Create or Update multiple BenefitSpecialty 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
benefitCode
required
string

Benefit Code

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
Array
benefit_Code
required
string [ 1 .. 10 ] characters

References the BenefitCodes.Benefit_Code from the parent table.

specialty_Code
required
string [ 1 .. 10 ] characters

Specifies the Provider specialty that the User wishes to either include or exclude as part of the benefit.

entry_Date
string <date-time>

Date when the record was added to the system.

entry_User
string or null <= 20 characters

User that first added the record to the system.

exclude
required
boolean

Indicates whether the specified code is included or excluded. Note: This field is marked as NOT NULL in the database and therefore required by the API.

update_Date
string <date-time>

Date when the record was last updated in the system.

update_User
string or null <= 20 characters

User that last updated the record in the system.

Responses
207

Success

401

Unauthorized

put/benefits/{benefitCode}/specialty-codes-batch
Request samples
[
  • {
    }
]
Response samples
{
  • "data": [
    ],
  • "error": {
    },
  • "debug": {
    }
}