Diagnostic Code Groups

Create DiagnosticCodeGroup

Creates a new DiagnosticCodeGroup

SecurityapiKeyAuth and bearerAuth
Request
header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
diagnostic_Group
required
string [ 1 .. 32 ] characters

Name for the diagnostic group.

description
string or null <= 512 characters

Description of the diagnostic group.

entry_Date
string <date-time>

Date record was first added to the system

entry_User
string or null <= 20 characters

User that first added the record to the system

update_Date
string <date-time>

Date 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/diagnostic-code-groups
Request samples
{
  • "diagnostic_Group": "string",
  • "description": "string",
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

List DiagnosticCodeGroup

Lists all DiagnosticCodeGroup

SecurityapiKeyAuth and bearerAuth
Request
header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/diagnostic-code-groups
Request samples
Response samples
No sample

Get DiagnosticCodeGroup

Gets DiagnosticCodeGroup

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
diagnosticGroup
required
string

Diagnostic Group

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/diagnostic-code-groups/{diagnosticGroup}
Request samples
Response samples
No sample

Update DiagnosticCodeGroup

Updates a specific DiagnosticCodeGroup.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
diagnosticGroup
required
string

Diagnostic Group

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
diagnostic_Group
required
string [ 1 .. 32 ] characters

Name for the diagnostic group.

description
string or null <= 512 characters

Description of the diagnostic group.

entry_Date
string <date-time>

Date record was first added to the system

entry_User
string or null <= 20 characters

User that first added the record to the system

update_Date
string <date-time>

Date 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/diagnostic-code-groups/{diagnosticGroup}
Request samples
{
  • "diagnostic_Group": "string",
  • "description": "string",
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

Delete DiagnosticCodeGroup

Deletes an DiagnosticCodeGroup

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
diagnosticGroup
required
string

Diagnostic Group

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/diagnostic-code-groups/{diagnosticGroup}
Request samples

Create or Update Batch DiagnosticCodeGroup

Create or Update multiple DiagnosticCodeGroup 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
diagnostic_Group
required
string [ 1 .. 32 ] characters

Name for the diagnostic group.

description
string or null <= 512 characters

Description of the diagnostic group.

entry_Date
string <date-time>

Date record was first added to the system

entry_User
string or null <= 20 characters

User that first added the record to the system

update_Date
string <date-time>

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