Tooth

Create Tooth

Creates a new Tooth

SecurityapiKeyAuth and bearerAuth
Request
header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
tooth_Number
required
integer <int32>

Number indicating which tooth is specified

description
string or null <= 64 characters

Description of the specific tooth

quadrant
string or null <= 8 characters

Quadrant of the mouth where the tooth is located

tooth_ID
required
integer <int32>

ID indicating which tooth is specified on the tooth chart

tooth_Type
required
string [ 1 .. 16 ] characters

Value indicating what type of tooth is specified

Responses
200

Success

401

Unauthorized

post/teeth
Request samples
{
  • "tooth_Number": 0,
  • "description": "string",
  • "quadrant": "string",
  • "tooth_ID": 0,
  • "tooth_Type": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

List Tooth

Lists all Tooth

SecurityapiKeyAuth and bearerAuth
Request
query Parameters
page
integer <int32>
Default: 1

Page

pageSize
integer <int32>
Default: 100

Page Size

sortBy
string

Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., 'Property1:desc,Property2:asc,Property3:asc' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/teeth
Request samples
Response samples
No sample

Get Tooth

Gets Tooth

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

Tooth Number

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/teeth/{toothNumber}
Request samples
Response samples
No sample

Update Tooth

Updates a specific Tooth.

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

Tooth Number

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
tooth_Number
required
integer <int32>

Number indicating which tooth is specified

description
string or null <= 64 characters

Description of the specific tooth

quadrant
string or null <= 8 characters

Quadrant of the mouth where the tooth is located

tooth_ID
required
integer <int32>

ID indicating which tooth is specified on the tooth chart

tooth_Type
required
string [ 1 .. 16 ] characters

Value indicating what type of tooth is specified

Responses
200

Success

401

Unauthorized

put/teeth/{toothNumber}
Request samples
{
  • "tooth_Number": 0,
  • "description": "string",
  • "quadrant": "string",
  • "tooth_ID": 0,
  • "tooth_Type": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

Delete Tooth

Deletes an Tooth

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

Tooth Number

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/teeth/{toothNumber}
Request samples

Create or Update Batch Tooth

Create or Update multiple Tooth 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
tooth_Number
required
integer <int32>

Number indicating which tooth is specified

description
string or null <= 64 characters

Description of the specific tooth

quadrant
string or null <= 8 characters

Quadrant of the mouth where the tooth is located

tooth_ID
required
integer <int32>

ID indicating which tooth is specified on the tooth chart

tooth_Type
required
string [ 1 .. 16 ] characters

Value indicating what type of tooth is specified

Responses
207

Success

401

Unauthorized

put/teeth-batch
Request samples
[
  • {
    }
]
Response samples
{
  • "data": [
    ],
  • "error": {
    },
  • "debug": {
    }
}