POST KwiktagImage/UpdateAPBillImageDetails

Updates the kwiktag document name, date

Request Information

URI Parameters

Body Parameters

KwikTagApBillUpdateDetailsRequest
NameDescriptionTypeAdditional Information
OriginalVendorId

The original Agvance vendor id for the AP Bill it is linked to

string

Required

Max length: 10

OriginalTransactionNumber

The original Agvance transaction number for the document

string

Required

Max length: 25

OriginalTransactionDate

The original date of the Agvance transaction if available.

date
BarcodeToUpdate

The barcode that will be updated. Must be specified

string

Required

Max length: 20

NewVendorId

The new Agvance vendor id for the AP Bill it should be linked to. Null or blank will leave this unchanged.

string

Max length: 10

NewTransactionNumber

The new Agvance transaction number for the document

string

Required

Max length: 25

NewTransactionDate

The new date of the Agvance transaction if available

date

Request Formats

application/json, text/json

Sample:
{
  "OriginalVendorId": "sample string 1",
  "OriginalTransactionNumber": "sample string 2",
  "OriginalTransactionDate": "2025-08-23T07:31:59.7716186+00:00",
  "BarcodeToUpdate": "sample string 3",
  "NewVendorId": "sample string 4",
  "NewTransactionNumber": "sample string 5",
  "NewTransactionDate": "2025-08-23T07:31:59.7716186+00:00"
}

application/xml, text/xml

Sample:
<KwikTagApBillUpdateDetailsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SKY.Core.KwikTag">
  <BarcodeToUpdate>sample string 3</BarcodeToUpdate>
  <NewTransactionDate>2025-08-23T07:31:59.7716186+00:00</NewTransactionDate>
  <NewTransactionNumber>sample string 5</NewTransactionNumber>
  <NewVendorId>sample string 4</NewVendorId>
  <OriginalTransactionDate>2025-08-23T07:31:59.7716186+00:00</OriginalTransactionDate>
  <OriginalTransactionNumber>sample string 2</OriginalTransactionNumber>
  <OriginalVendorId>sample string 1</OriginalVendorId>
</KwikTagApBillUpdateDetailsRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'KwikTagApBillUpdateDetailsRequest'.

Response Information

Resource Description

Updates the kwiktag document name, date

AgvKwiktagAPBillUpdate
NameDescriptionTypeAdditional Information
Status

0 = Success. 1 = An error occurred. 2 = An error occurred. 3 = Descriptive message, process was successful.

string
Message

Informational message that corresponds to the Status returned. 0 - Message will be "OK". 1 - Detailed message returned to give user an indication of what went wrong. 2 - Less Detailed message returned that may not mean anything to the user but that the application might use to take a corrective action. 3 - Not an error but something the user might need to know.

string
ErrorList

List of error messages of the API call.

Collection of string
WarningList

List of warning messages of the API call.

Collection of string

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Message": "sample string 2",
  "ErrorList": [
    "sample string 1",
    "sample string 2"
  ],
  "WarningList": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<AgvKwiktagAPBillUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Kwiktag">
  <ErrorList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ErrorList>
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
  <WarningList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </WarningList>
</AgvKwiktagAPBillUpdate>