Answer the question
In order to leave comments, you need to log in
How to reach e-autopay via GET?
I need to get order statuses from e-autopay, they don't have a good
example
.
Can you tell me what to fix / where to dig?
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => ' https://api.e-autopay.com/v01/numbers/orders/numbers? ',
CURLOPT_USERAGENT => 'Codular Sample cURL Request',
CURLOPT_POSTFIELDS = > array(
customer_api_key => 'numbers'
)
));
$resp = curl_exec($curl);
echo($resp);
curl_close($curl);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question