I am trying to get the label and tags of a conversation. Here is a sample topic https://www.paypal-community.com/t5/My-Money/How-can-i-take-money-out-without-a-bank-account/td-p/745517 It has the following two label names "Add or Withdraw Money" & "Bank Accounts & Credit Cards" I am able to pull the messages using this snippet https://www.paypal-community.com/api/2.0/search?q=SELECT * FROM messages WHERE topic.id='745517' LIMIT 1000 But I get an error when I run this https://www.paypal-community.com/api/2.0/search?q=SELECT * FROM labels WHERE message.id='745517' Error I get is the following {"status":"error","message":"Invalid query syntax","data":{"type":"error_data","code":604,"developer_message":"","more_info":""},"metadata":{}} Same issue when I try to pull tags How can I fix this? Any help is greatly appreciated.
... View more