Auth Diagnostic Codes

Create Auth Diagnostic Code

Creates a new Diagnostic Code.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
authNumber
required
string

Auth Number

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
auth_Number
required
string [ 1 .. 20 ] characters

Unique identifier assigned to the authorization.

diagnostic_Code
required
string [ 1 .. 8 ] characters

Unique identifier assigned to the diagnosis that will be tied to the authorization. This can be selected by right-clicking within the field and selecting 'Lookup' from the context menu.

diagnostic_Code_Type
required
string [ 1 .. 16 ] characters

Identifies the ICD version that is associated with the diagnosis code.

disable_Provider_Match
required
boolean

Checking this box means that adjudication will not require a match on the diagnosis code when automatically assigning this auth.

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.

primary_Diag
string or null <= 1 characters

Indicates that the associated diagnosis is the primary diagnosis.

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/auths/{authNumber}/diagnostic-codes
Request samples
{
  • "auth_Number": "string",
  • "diagnostic_Code": "string",
  • "diagnostic_Code_Type": "string",
  • "disable_Provider_Match": true,
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "primary_Diag": "s",
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

List Diagnostic Codes for Auth

List Diagnostic Codes for a specific Auth

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
authNumber
required
string

Auth Number

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/auths/{authNumber}/diagnostic-codes
Request samples
Response samples
No sample

List Diagnostic Codes with Value

List Diagnostic Codes with a specific Diagnostic Code value.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
authNumber
required
string

Auth Number

diagnosticCode
required
string

Diagnostic Code

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/auths/{authNumber}/diagnostic-codes/{diagnosticCode}
Request samples
Response samples
No sample

Get Diagnostic Code

Gets a specific Diagnostic Code

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
authNumber
required
string

Auth Number

diagnosticCode
required
string

Diagnostic Code

diagnosticCodeType
required
string

Diagnostic Code Type

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/auths/{authNumber}/diagnostic-codes/{diagnosticCode}/diagnostic-code-types/{diagnosticCodeType}
Request samples
Response samples
No sample

Update Diagnostic Code

Updates a specific Diagnostic Code.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
authNumber
required
string

Auth number

diagnosticCode
required
string

Diagnostic Code

diagnosticCodeType
required
string

Diagnostic Code Type

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
auth_Number
required
string [ 1 .. 20 ] characters

Unique identifier assigned to the authorization.

diagnostic_Code
required
string [ 1 .. 8 ] characters

Unique identifier assigned to the diagnosis that will be tied to the authorization. This can be selected by right-clicking within the field and selecting 'Lookup' from the context menu.

diagnostic_Code_Type
required
string [ 1 .. 16 ] characters

Identifies the ICD version that is associated with the diagnosis code.

disable_Provider_Match
required
boolean

Checking this box means that adjudication will not require a match on the diagnosis code when automatically assigning this auth.

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.

primary_Diag
string or null <= 1 characters

Indicates that the associated diagnosis is the primary diagnosis.

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/auths/{authNumber}/diagnostic-codes/{diagnosticCode}/diagnostic-code-types/{diagnosticCodeType}
Request samples
{
  • "auth_Number": "string",
  • "diagnostic_Code": "string",
  • "diagnostic_Code_Type": "string",
  • "disable_Provider_Match": true,
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "primary_Diag": "s",
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

Delete Diagnostic Code

Deletes a specific Diagnostic Code.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
authNumber
required
string

Auth Number

diagnosticCode
required
string

Diagnostic Code to delete

diagnosticCodeType
required
string

Diagnostic Code Type

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/auths/{authNumber}/diagnostic-codes/{diagnosticCode}/diagnostic-code-types/{diagnosticCodeType}
Request samples

Update Diagnostic Code Batch

Updates multiple Diagnostic Code

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
authNumber
required
string

Auth number

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
Array
auth_Number
required
string [ 1 .. 20 ] characters

Unique identifier assigned to the authorization.

diagnostic_Code
required
string [ 1 .. 8 ] characters

Unique identifier assigned to the diagnosis that will be tied to the authorization. This can be selected by right-clicking within the field and selecting 'Lookup' from the context menu.

diagnostic_Code_Type
required
string [ 1 .. 16 ] characters

Identifies the ICD version that is associated with the diagnosis code.

disable_Provider_Match
required
boolean

Checking this box means that adjudication will not require a match on the diagnosis code when automatically assigning this auth.

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.

primary_Diag
string or null <= 1 characters

Indicates that the associated diagnosis is the primary diagnosis.

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

Multicode response

401

Unauthorized

put/auths/{authNumber}/diagnostic-codes-batch
Request samples
[
  • {
    }
]
Response samples
{
  • "data": [
    ],
  • "error": {
    },
  • "debug": {
    }
}