Jared Lindo
New Member
Good day!
I've been working on an extension which automatically creates a list and pull data from third party program.
It's working before until today, I had this issue.
The response coming from the api for creating the list isn't returning the value of the created list uid anymore.
So I have this code inside a function
$lists = new MailWizzApi_Endpoint_Lists();
$lists_response = $lists->create( some array data );
$response = $lists_response->body->toArray();
$created_list_id = $response['list_uid'];
return $created_list_id;
the response body didn't include the created list data anymore just like what it's doing before.
Do you have an idea why?
Thank you in advance.
I've been working on an extension which automatically creates a list and pull data from third party program.
It's working before until today, I had this issue.
The response coming from the api for creating the list isn't returning the value of the created list uid anymore.
So I have this code inside a function
$lists = new MailWizzApi_Endpoint_Lists();
$lists_response = $lists->create( some array data );
$response = $lists_response->body->toArray();
$created_list_id = $response['list_uid'];
return $created_list_id;
the response body didn't include the created list data anymore just like what it's doing before.
Do you have an idea why?
Thank you in advance.