Tooth Charts

Create ToothChart

Creates a new ToothChart

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
chartType
required
string

Chart Type

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

chart_Type
required
string [ 1 .. 8 ] characters

Identifier for the type of chart, including Universal, Palmer or FDI two_Gigit Notation

chart_Value
required
string [ 1 .. 8 ] characters

Number of the specific tooth in the selected type of tooth chart

Responses
200

Success

401

Unauthorized

post/tooth-charts/{chartType}/teeth/{toothNumber}
Request samples
{
  • "tooth_Number": 0,
  • "chart_Type": "string",
  • "chart_Value": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

Get ToothChart

Gets ToothChart

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
chartType
required
string

Chart Type

toothNumber
required
integer <int32>

Tooth Number

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/tooth-charts/{chartType}/teeth/{toothNumber}
Request samples
Response samples
No sample

Update ToothChart

Updates a specific ToothChart.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
chartType
required
string

Chart Type

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

chart_Type
required
string [ 1 .. 8 ] characters

Identifier for the type of chart, including Universal, Palmer or FDI two_Gigit Notation

chart_Value
required
string [ 1 .. 8 ] characters

Number of the specific tooth in the selected type of tooth chart

Responses
200

Success

401

Unauthorized

put/tooth-charts/{chartType}/teeth/{toothNumber}
Request samples
{
  • "tooth_Number": 0,
  • "chart_Type": "string",
  • "chart_Value": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

Delete ToothChart

Deletes an ToothChart

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
chartType
required
string

Chart Type

toothNumber
required
integer <int32>

Tooth Number

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/tooth-charts/{chartType}/teeth/{toothNumber}
Request samples

List ToothChart

Lists all ToothChart for the given chartType

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
chartType
required
string

Chart Type

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/tooth-charts/{chartType}/teeth
Request samples
Response samples
No sample

Create or Update Batch ToothChart

Create or Update multiple ToothChart 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
chartType
required
string

Chart Type

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
Array
tooth_Number
required
integer <int32>

Number indicating which tooth is specified

chart_Type
required
string [ 1 .. 8 ] characters

Identifier for the type of chart, including Universal, Palmer or FDI two_Gigit Notation

chart_Value
required
string [ 1 .. 8 ] characters

Number of the specific tooth in the selected type of tooth chart

Responses
207

Success

401

Unauthorized

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