Group Network Criterias

Create GroupNetworkCriteria

Creates a new GroupNetworkCriteria

SecurityapiKeyAuth and bearerAuth
Request
header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
groupNetworkCriteria_Key
required
integer <int32>

Unique identifier for each Network Criteria used for network selection during adjudication.

coverage_Start
string or null <date-time>

References GroupNetwork.Coverage_Start value on the parent record.

criteria_From
string or null <= 64 characters

The from value applied to this criteria.

criteria_Operator
string or null <= 1 characters
criteria_Thru
string or null <= 64 characters

The thru value applied to this criteria.

division_ID
string or null <= 20 characters

References GroupNetwork.Division_ID value on the parent record.

groupNetworkCriteriaColumn_Key
integer or null <int32>

References GroupNetworkCriteriaColumn.GroupNetworkCriteriaColumn_Key in referenced table.

group_ID
string or null <= 20 characters

References GroupNetwork.Group_ID value on the parent record.

networkID
string or null <= 10 characters

References GroupNetwork.Network_ID value on the parent record.

Responses
200

Success

401

Unauthorized

post/group-network-criterias
Request samples
{
  • "groupNetworkCriteria_Key": 0,
  • "coverage_Start": "2019-08-24T14:15:22Z",
  • "criteria_From": "string",
  • "criteria_Operator": "s",
  • "criteria_Thru": "string",
  • "division_ID": "string",
  • "groupNetworkCriteriaColumn_Key": 0,
  • "group_ID": "string",
  • "networkID": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

List GroupNetworkCriteria

Retrieves a paginated list of GroupNetworkCriteria with optional sorting and filtering by Group_ID and Division_ID.

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.

Group_ID
string

Optional filter for Group_ID.

Division_ID
string

Optional filter for Division_ID.

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/group-network-criterias
Request samples
Response samples
No sample

Get GroupNetworkCriteria

Gets GroupNetworkCriteria

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

GroupNetworkCriteria Key

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/group-network-criterias/{groupNetworkCriteriaKey}
Request samples
Response samples
No sample

Update GroupNetworkCriteria

Updates a specific GroupNetworkCriteria.

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

GroupNetworkCriteria Key

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
groupNetworkCriteria_Key
required
integer <int32>

Unique identifier for each Network Criteria used for network selection during adjudication.

coverage_Start
string or null <date-time>

References GroupNetwork.Coverage_Start value on the parent record.

criteria_From
string or null <= 64 characters

The from value applied to this criteria.

criteria_Operator
string or null <= 1 characters
criteria_Thru
string or null <= 64 characters

The thru value applied to this criteria.

division_ID
string or null <= 20 characters

References GroupNetwork.Division_ID value on the parent record.

groupNetworkCriteriaColumn_Key
integer or null <int32>

References GroupNetworkCriteriaColumn.GroupNetworkCriteriaColumn_Key in referenced table.

group_ID
string or null <= 20 characters

References GroupNetwork.Group_ID value on the parent record.

networkID
string or null <= 10 characters

References GroupNetwork.Network_ID value on the parent record.

Responses
200

Success

401

Unauthorized

put/group-network-criterias/{groupNetworkCriteriaKey}
Request samples
{
  • "groupNetworkCriteria_Key": 0,
  • "coverage_Start": "2019-08-24T14:15:22Z",
  • "criteria_From": "string",
  • "criteria_Operator": "s",
  • "criteria_Thru": "string",
  • "division_ID": "string",
  • "groupNetworkCriteriaColumn_Key": 0,
  • "group_ID": "string",
  • "networkID": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

Delete GroupNetworkCriteria

Deletes an GroupNetworkCriteria

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

GroupNetworkCriteria Key

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/group-network-criterias/{groupNetworkCriteriaKey}
Request samples

Create or Update Batch GroupNetworkCriteria

Create or Update multiple GroupNetworkCriteria 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
groupNetworkCriteria_Key
required
integer <int32>

Unique identifier for each Network Criteria used for network selection during adjudication.

coverage_Start
string or null <date-time>

References GroupNetwork.Coverage_Start value on the parent record.

criteria_From
string or null <= 64 characters

The from value applied to this criteria.

criteria_Operator
string or null <= 1 characters
criteria_Thru
string or null <= 64 characters

The thru value applied to this criteria.

division_ID
string or null <= 20 characters

References GroupNetwork.Division_ID value on the parent record.

groupNetworkCriteriaColumn_Key
integer or null <int32>

References GroupNetworkCriteriaColumn.GroupNetworkCriteriaColumn_Key in referenced table.

group_ID
string or null <= 20 characters

References GroupNetwork.Group_ID value on the parent record.

networkID
string or null <= 10 characters

References GroupNetwork.Network_ID value on the parent record.

Responses
207

Success

401

Unauthorized

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