Creates a new queued request for processing by the QuickBooks integration. The QuickBooks request itself can be in either XML (request_xml) or JSON (request_json) format. If a webhook URL is provided, the system will send a POST request to that URL with the result when the request is completed.
Use your app's API_KEY as the username, and leave the password blank
ID of the connection that will process this request
"123e4567-e89b-12d3-a456-426614174000"
The request payload in JSON format (alternative to request_xml)
{
"version": "13.0",
"request": {
"name": "CustomerQueryRq",
"attributes": { "request_id": "1" },
"children": [{ "name": "MaxReturned", "text": "100" }]
}
}The request payload in QBXML format (alternative to request_json)
"<QBXML><QBXMLMsgsRq onError='stopOnError'><CustomerQueryRq requestID='1'><MaxReturned>100</MaxReturned></CustomerQueryRq></QBXMLMsgsRq></QBXML>"
Optional URL to receive a webhook when the request is completed
"https://your-webhook-url.com/endpoint"
Queued request created successfully