1. Genesys Cloud Developer Center, API Explorer, POST /api/v2/conversations/callbacks: The official API documentation for creating a callback.
Section: Body parameter descriptions for CreateCallbackOnConversationCommand.
Details: It defines queueId as "The queue ID to route the callback to" and routingData as "The routing data to be used for routing the callback," noting that one of the two is required. This establishes their distinct roles in the routing process.
2. Genesys Cloud Developer Center, "Create a callback" Tutorial: This guide provides a practical explanation of how to use the API.
Section: "Route the callback"
Details: The document explicitly states: "To route the callback to a specific queue, specify the queueId... To use more advanced routing, such as routing based on skills or language, specify the routingData object. The routingData object contains a routingAddress (the queue) and can also contain scoredAgents to specify a preferred agent, skills to specify required skills, and priority." This directly confirms that queueId is for basic routing and routingData is for advanced settings.