Benefit Diagnostic Codes

Create BenefitDiagCodes

Creates a new BenefitDiagCodes

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.

diagnostic_Code_Type
required
string [ 1 .. 16 ] characters

Specifies the numbering system used for the selected Diagnosis Codes. Note: This field is marked as NOT NULL in the database and therefore required by the API.

from_Diag_Code
required
string [ 1 .. 8 ] characters

First Diagnosis Code for the specified range.

entry_Date
string <date-time>

Date when the record was first 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 range of codes is Included or Excluded. Note: This field is marked as NOT NULL in the database and therefore required by the API.

thru_Diag_Code
string or null <= 8 characters

Last Diagnosis Code for the specified range.

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}/diagnoses
Request samples
{
  • "benefit_Code": "string",
  • "diagnostic_Code_Type": "string",
  • "from_Diag_Code": "string",
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "exclude": true,
  • "thru_Diag_Code": "string",
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

List BenefitDiagCodes

Lists all BenefitDiagCodes for the given 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}/diagnoses
Request samples
Response samples
No sample

Get BenefitDiagCodes

Gets BenefitDiagCodes

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
benefitCode
required
string

Benefit Code

diagnosticCodeType
required
string

Diagnostic Code Type

fromDiagCode
required
string

From Diag Code

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/benefits/{benefitCode}/diagnoses/{diagnosticCodeType}/{fromDiagCode}
Request samples
Response samples
No sample

Update BenefitDiagCodes

Updates a specific BenefitDiagCodes.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
benefitCode
required
string

Benefit Code

diagnosticCodeType
required
string

Diagnostic Code Type

fromDiagCode
required
string

From Diag 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.

diagnostic_Code_Type
required
string [ 1 .. 16 ] characters

Specifies the numbering system used for the selected Diagnosis Codes. Note: This field is marked as NOT NULL in the database and therefore required by the API.

from_Diag_Code
required
string [ 1 .. 8 ] characters

First Diagnosis Code for the specified range.

entry_Date
string <date-time>

Date when the record was first 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 range of codes is Included or Excluded. Note: This field is marked as NOT NULL in the database and therefore required by the API.

thru_Diag_Code
string or null <= 8 characters

Last Diagnosis Code for the specified range.

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}/diagnoses/{diagnosticCodeType}/{fromDiagCode}
Request samples
{
  • "benefit_Code": "string",
  • "diagnostic_Code_Type": "string",
  • "from_Diag_Code": "string",
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "exclude": true,
  • "thru_Diag_Code": "string",
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

Delete BenefitDiagCodes

Deletes an BenefitDiagCodes

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
benefitCode
required
string

Benefit Code

diagnosticCodeType
required
string

Diagnostic Code Type

fromDiagCode
required
string

From Diag Code

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/benefits/{benefitCode}/diagnoses/{diagnosticCodeType}/{fromDiagCode}
Request samples

Create or Update Batch BenefitDiagCodes

Create or Update multiple BenefitDiagCodes 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.

diagnostic_Code_Type
required
string [ 1 .. 16 ] characters

Specifies the numbering system used for the selected Diagnosis Codes. Note: This field is marked as NOT NULL in the database and therefore required by the API.

from_Diag_Code
required
string [ 1 .. 8 ] characters

First Diagnosis Code for the specified range.

entry_Date
string <date-time>

Date when the record was first 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 range of codes is Included or Excluded. Note: This field is marked as NOT NULL in the database and therefore required by the API.

thru_Diag_Code
string or null <= 8 characters

Last Diagnosis Code for the specified range.

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}/diagnoses-batch
Request samples
[
  • {
    }
]
Response samples
{
  • "data": [
    ],
  • "error": {
    },
  • "debug": {
    }
}