Recent content by miggy723

  1. M

    PMG API HELP 401 no ticket

    Thanks, i was able to figure it out with the help of another developer, so a couple things actually helped solve my issue. 1. in the get url add a pmail parameter "?pmail=email@email.com" docs do mention it is optional but doesnt seem to be the case 2.insert cookie headers as so "Cookie...
  2. M

    PMG API HELP 401 no ticket

    i understand i need to pass my access ticket with any future request. i get my ticket from the post request. and i am passing my ticket as so. \\\\\\\\ curl_setopt($ch1, CURLOPT_HTTPHEADER, array("Cookie" => $ticket_code )); \\\\\\\ the language i am using is PHP and using curl to make the...