Im trying to download transactions from eBay POST API ,attached eBay documentation : eBay Documentation
im trying to run the following script
    ebay_url <-"https://publisher.ebaypartnernetwork.ebay.com/PublisherReportsTx"
user_name <- "xxxxxxx"
user_password <- "yyyyyyy"
pt <- "1"
tx_fmt <- "0"
submit_tx <-"Download"
from_date <- Sys.Date()-5
to_date <- Sys.Date()-1
## POST request Access Token
response <- POST(url = paste0(ebay_url,
                              "?user_name=",user_name,
                              "&user_password=",user_password,
                              "&start_date=",from_date,
                              "&end_date=",to_date,
                              "&pt=",pt, 
                              "&tx_fmt=",tx_fmt,
                              "&submit_tx=",submit_tx),
                 content_type("application/x-www-form-urlencoded"))
im receiving status 200 but i dont know how to pull the data from that call
usually im using fromJSON or response[["content"]] in GET calls but its not working here ,
