CLIA Certificate

Create CLIACertificate

Creates a new CLIACertificate

SecurityapiKeyAuth and bearerAuth
Request
header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
certificate_ID
required
integer <int32>

Idenfitier of the CLIA certificate. Note: This field is marked as NOT NULL in the database and therefore required by the API.

certificate_Type
string or null <= 32 characters

Indicates the type of CLIA certificate.

description
string or null <= 128 characters

Description of the associated CLIA certificate.

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.

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/clia-certificates
Request samples
{
  • "certificate_ID": 0,
  • "certificate_Type": "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 CLIACertificate

Lists all CLIACertificate given a specific

SecurityapiKeyAuth and bearerAuth
Request
header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/clia-certificates
Request samples
Response samples
No sample

Get CLIACertificate

Gets CLIACertificate

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
certificateId
required
integer <int32>

Certificate ID

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/clia-certificates/{certificateId}
Request samples
Response samples
No sample

Update CLIACertificate

Updates a specific CLIACertificate.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
certificateId
required
integer <int32>

Certificate ID

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
certificate_ID
required
integer <int32>

Idenfitier of the CLIA certificate. Note: This field is marked as NOT NULL in the database and therefore required by the API.

certificate_Type
string or null <= 32 characters

Indicates the type of CLIA certificate.

description
string or null <= 128 characters

Description of the associated CLIA certificate.

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.

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/clia-certificates/{certificateId}
Request samples
{
  • "certificate_ID": 0,
  • "certificate_Type": "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 CLIACertificate

Deletes an CLIACertificate

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
certificateId
required
integer <int32>

Certificate ID

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/clia-certificates/{certificateId}
Request samples

Create or Update Batch CLIACertificate

Create or Update multiple CLIACertificate 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
certificate_ID
required
integer <int32>

Idenfitier of the CLIA certificate. Note: This field is marked as NOT NULL in the database and therefore required by the API.

certificate_Type
string or null <= 32 characters

Indicates the type of CLIA certificate.

description
string or null <= 128 characters

Description of the associated CLIA certificate.

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.

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