APC Schedules

Create APCSchedule

Creates a new APCSchedule

SecurityapiKeyAuth and bearerAuth
Request
header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
apC_Schedule
required
string [ 1 .. 16 ] characters

Name for the APC schedule.

description
string or null <= 512 characters

Description of the APC schedule.

Responses
200

Success

401

Unauthorized

post/apc-schedules
Request samples
{
  • "apC_Schedule": "string",
  • "description": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

List APCSchedule

Lists all APCSchedule

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

Get APCSchedule

Gets APCSchedule

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
aPCSchedule
required
string

APC Schedule

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/apc-schedules/{aPCSchedule}
Request samples
Response samples
No sample

Update APCSchedule

Updates a specific APCSchedule.

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
aPCSchedule
required
string

APC Schedule

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
apC_Schedule
required
string [ 1 .. 16 ] characters

Name for the APC schedule.

description
string or null <= 512 characters

Description of the APC schedule.

Responses
200

Success

401

Unauthorized

put/apc-schedules/{aPCSchedule}
Request samples
{
  • "apC_Schedule": "string",
  • "description": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

Delete APCSchedule

Deletes an APCSchedule

SecurityapiKeyAuth and bearerAuth
Request
path Parameters
aPCSchedule
required
string

APC Schedule

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/apc-schedules/{aPCSchedule}
Request samples

Create or Update Batch APCSchedule

Create or Update multiple APCSchedule 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

Name for the APC schedule.

description
string or null <= 512 characters

Description of the APC schedule.

Responses
207

Success

401

Unauthorized

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