Fetch ticket owned by employee id details in payments api

I am using get-a-payment-by-id and get-a-list-of-payment-objects endpoints for fetching payments information for an order. Both team_member_id and employee_id attributes in the response contain information about the ticket collected by the employee. I also need the id of the ticket owned by employee. What are the ways of getting that information?

Hello,
The payment endpoints you’re using only return details about who collected the payment (via team_member_id or employee_id), not the actual ticket owned by that employee. To get the ticket ID, you’ll need to query the order or ticket-related endpoints directly (for example, fetching the order items or ticket objects associated with that employee). Essentially, payments give you the collector, while tickets require a separate mycardstatement login lookup through the order or ticket APIs to link the employee to the specific ticket they own.

Best regards,
Tamara

Can you give me the particular order endpoint as I cant see any employee related information there. The payments endpoint only gives us ticket collected by information and not the ticket owned by information.