Update a sales-tax payment check
Updates an existing sales-tax payment check.
post/quickbooks-desktop/sales-tax-payment-checks/{id}
Path parameters
idstring required
The QuickBooks-assigned unique identifier of the sales-tax payment check to update.
Example:123ABC-1234567890
The QuickBooks-assigned unique identifier of the sales-tax payment check to update.
Headers
Conductor-End-User-Idstring required
The ID of the End-User to receive this request.
Example:end_usr_1234567abcdefg
The ID of the End-User to receive this request.
Request body
Example request
{
"revisionNumber": "1721172183",
"transactionDate": "2024-10-01",
"bankAccountId": "80000001-1234567890",
"isQueuedForPrint": true,
"refNumber": "TAXPMT-1234",
"memo": "Sales tax payment for Q3 2024",
"address": {
"line1": "Conductor Labs Inc.",
"line2": "540 Market St.",
"line3": "Suite 100",
"city": "San Francisco",
"state": "CA",
"postalCode": "94110",
"country": "United States",
"note": "Conductor HQ"
}
}Response
Returns the updated sales-tax payment check.
Example response
{
"id": "123ABC-1234567890",
"objectType": "qbd_sales_tax_payment_check",
"createdAt": "2025-01-01T12:34:56+00:00",
"updatedAt": "2025-02-01T12:34:56+00:00",
"revisionNumber": "1721172183",
"vendor": {
"id": "80000001-1234567890",
"fullName": "State Tax Agency"
},
"transactionDate": "2024-10-01",
"bankAccount": {
"id": "80000001-1234567890",
"fullName": "Checking"
},
"amount": "1000.00",
"refNumber": "TAXPMT-1234",
"memo": "Sales tax payment for Q3 2024",
"address": {
"line1": "Conductor Labs Inc.",
"line2": "540 Market St.",
"line3": "Suite 100",
"city": "San Francisco",
"state": "CA",
"postalCode": "94110",
"country": "United States",
"note": "Conductor HQ"
},
"isQueuedForPrint": true,
"externalId": "12345678-abcd-1234-abcd-1234567890ab",
"lines": [
{
"id": "456DEF-1234567890",
"objectType": "qbd_sales_tax_payment_check_line",
"salesTaxItem": {
"id": "80000001-1234567890",
"fullName": "State Sales Tax"
},
"amount": "1000.00",
"taxAmount": "10.00"
}
],
"customFields": [
{
"ownerId": "0",
"name": "Customer Rating",
"type": "string_1024_type",
"value": "Premium"
}
]
}