Giter VIP home page Giter VIP logo

Comments (8)

ChrisRM avatar ChrisRM commented on September 14, 2024

Your code works perfectly fine here, although campaigns.name is not a valid key according to the schema: https://us10.api.mailchimp.com/schema/3.0/Campaigns/Instance.json

$result = $mc->get('campaigns', [
    'fields' => 'campaigns.id,campaigns.type',
    'offset' => 2,
    'count' => 2
]);

var_dump($result);

from mailchimp-api-v3.

guerriky avatar guerriky commented on September 14, 2024

Hi,
Thanks for your reply.

I took it off now.
Same outcome.

Are there any requirements (other than PHP version) for this to work?

I mean, all the "instance" methods (get list, create subscriber...) work, but it doesn't seem to be the case with "collection" methods.

from mailchimp-api-v3.

ChrisRM avatar ChrisRM commented on September 14, 2024

Can you try the lists call and see what you get? Try with the offset aswell.

$result = $mc->get('lists', [
    'fields' => 'lists.id,lists.name',
    'count' => 10
]);

var_dump($result);

from mailchimp-api-v3.

guerriky avatar guerriky commented on September 14, 2024

Hi,
with both count and offset, I get 9 (from 0 to 8) lists, which are as many as there is on the account.

No filter appears to be applying, and no error message returned.

I'll bypass my firewall and try from there now.

Thanks

from mailchimp-api-v3.

guerriky avatar guerriky commented on September 14, 2024

Hi,
nope, the firewall was not the issue.

What else could it be?

Thanks

from mailchimp-api-v3.

ChrisRM avatar ChrisRM commented on September 14, 2024

I'm not sure to be honest. I haven't experienced any problems with the pagination. You could try one last thing:

$result = $mc->get('lists?fields=lists.id,lists.name&count=5&offset=4');

var_dump($result);

from mailchimp-api-v3.

guerriky avatar guerriky commented on September 14, 2024

Hi,
darn, that last one just did the trick!

I see exactly what I should now :)

Thanks

from mailchimp-api-v3.

ChrisRM avatar ChrisRM commented on September 14, 2024

That's odd. Can you do a composer update now and test this call:

$result = $mc->get('lists', [
    'fields' => 'lists.id,lists.name',
    'offset' => 4,
    'count' => 5
]);

var_dump($result);

from mailchimp-api-v3.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.