Premium Invoice Payments

Create PremInvoicePayment

Creates a new PremInvoicePayment

SecurityapiKeyAuth and bearerAuth
Request
header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
invoice_Key
required
integer <int32>
premPayment_Key
required
integer <int32>
entry_Date
string <date-time>
entry_User
string or null <= 20 characters
payment_Posted
number or null <double>
payment_Posted_Date
string or null <date-time>
update_Date
string <date-time>
update_User
string or null <= 20 characters
Responses
200

Success

401

Unauthorized

post/premium-invoice-payments
Request samples
{
  • "invoice_Key": 0,
  • "premPayment_Key": 0,
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "payment_Posted": 0.1,
  • "payment_Posted_Date": "2019-08-24T14:15:22Z",
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

List PremInvoicePayment

Lists all PremInvoicePayment

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/premium-invoice-payments
Request samples
Response samples
No sample

Get PremInvoicePayment

Gets PremInvoicePayment

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

Invoice Key

premPaymentKey
required
integer <int32>

PremPayment Key

header Parameters
vbasoftware-database
required
string

Target database

Responses
200

Success

401

Unauthorized

get/premium-invoice-payments/{invoiceKey}/{premPaymentKey}
Request samples
Response samples
No sample

Update PremInvoicePayment

Updates a specific PremInvoicePayment.

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

Invoice Key

premPaymentKey
required
integer <int32>

PremPayment Key

header Parameters
vbasoftware-database
required
string

Target database

Request Body schema:
required
invoice_Key
required
integer <int32>
premPayment_Key
required
integer <int32>
entry_Date
string <date-time>
entry_User
string or null <= 20 characters
payment_Posted
number or null <double>
payment_Posted_Date
string or null <date-time>
update_Date
string <date-time>
update_User
string or null <= 20 characters
Responses
200

Success

401

Unauthorized

put/premium-invoice-payments/{invoiceKey}/{premPaymentKey}
Request samples
{
  • "invoice_Key": 0,
  • "premPayment_Key": 0,
  • "entry_Date": "2019-08-24T14:15:22Z",
  • "entry_User": "string",
  • "payment_Posted": 0.1,
  • "payment_Posted_Date": "2019-08-24T14:15:22Z",
  • "update_Date": "2019-08-24T14:15:22Z",
  • "update_User": "string"
}
Response samples
{
  • "data": {
    },
  • "error": {
    },
  • "debug": {
    }
}

Delete PremInvoicePayment

Deletes an PremInvoicePayment

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

Invoice Key

premPaymentKey
required
integer <int32>

PremPayment Key

header Parameters
vbasoftware-database
required
string

Target database

Responses
204

Success

401

Unauthorized

delete/premium-invoice-payments/{invoiceKey}/{premPaymentKey}
Request samples

List PremInvoicePayment Extended

Lists PremInvoicePayment Extended objects which include invoice posted payments and payment applied fields.

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

Invoice Key

query Parameters
invoiceYear
integer <int32>

Invoice Year

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/premium-invoice-payments-ext/{invoiceKey}
Request samples
Response samples
No sample

Create or Update Batch PremInvoicePayment

Create or Update multiple PremInvoicePayment 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
invoice_Key
required
integer <int32>
premPayment_Key
required
integer <int32>
entry_Date
string <date-time>
entry_User
string or null <= 20 characters
payment_Posted
number or null <double>
payment_Posted_Date
string or null <date-time>
update_Date
string <date-time>
update_User
string or null <= 20 characters
Responses
207

Success

401

Unauthorized

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