APC Weights

Create APCWeight

Creates a new APCWeight

SecurityapiKeyAuth and bearerAuth
Request
header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
apC_Schedule
required
string [ 1 .. 16 ] characters
apC_Code
required
string [ 1 .. 8 ] characters
effective_Date
required
string <date-time>
entry_Date
string or null <date-time>
entry_User
string or null <= 20 characters
term_Date
string or null <date-time>
update_Date
string or null <date-time>
update_User
string or null <= 20 characters
weight
number or null <double>
Responses
200

Success

401

Unauthorized

post/apc-weights
Request samples
{
  • "apC_Schedule": "string",
  • "apC_Code": "string",
  • "effective_Date": "2019-08-24T14:15:22Z",
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "term_Date": "2019-08-24T14:15:22Z",
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string",
  • "weight": 0.1
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

List APCWeight

Lists all APCWeight for the given apcSchedule and apcCode

SecurityapiKeyAuth and bearerAuth
Request
query Parameters
apcSchedule
string

APC Schedule

apcCode
string

APC Code

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/apc-weights
Request samples
Response samples
No sample

Get APCWeight

Gets APCWeight

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
apcSchedule
required
string

APC Schedule

apcCode
required
string

APC Code

effectiveDate
required
string <date-time>

Effective Date

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/apc-weights/{apcSchedule}/{apcCode}/{effectiveDate}
Request samples
Response samples
No sample

Update APCWeight

Updates a specific APCWeight.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
apcSchedule
required
string

APC Schedule

apcCode
required
string

APC Code

effectiveDate
required
string <date-time>

Effective Date

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
apC_Schedule
required
string [ 1 .. 16 ] characters
apC_Code
required
string [ 1 .. 8 ] characters
effective_Date
required
string <date-time>
entry_Date
string or null <date-time>
entry_User
string or null <= 20 characters
term_Date
string or null <date-time>
update_Date
string or null <date-time>
update_User
string or null <= 20 characters
weight
number or null <double>
Responses
200

Success

401

Unauthorized

put/apc-weights/{apcSchedule}/{apcCode}/{effectiveDate}
Request samples
{
  • "apC_Schedule": "string",
  • "apC_Code": "string",
  • "effective_Date": "2019-08-24T14:15:22Z",
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "term_Date": "2019-08-24T14:15:22Z",
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string",
  • "weight": 0.1
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

Delete APCWeight

Deletes an APCWeight

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
apcSchedule
required
string

APC Schedule

apcCode
required
string

APC Code

effectiveDate
required
string <date-time>

Effective Date

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/apc-weights/{apcSchedule}/{apcCode}/{effectiveDate}
Request samples

Create or Update Batch APCWeight

Create or Update multiple APCWeight 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
apC_Schedule
required
string [ 1 .. 16 ] characters
apC_Code
required
string [ 1 .. 8 ] characters
effective_Date
required
string <date-time>
entry_Date
string or null <date-time>
entry_User
string or null <= 20 characters
term_Date
string or null <date-time>
update_Date
string or null <date-time>
update_User
string or null <= 20 characters
weight
number or null <double>
Responses
207

Success

401

Unauthorized

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