Patreon member list not updating

Hello,

I am using V2 of the patreon API to obtain the list of my patrons for my campaign. I use the following endpoint with these includes:

https://www.patreon.com/api/oauth2/v2/campaigns/xxxx/members?include=user

where xxxx is my campaign ID.

I have a test account that I used to become a patron to my campaign. Following the beginning of this month, I have cancelled my membership to my campaign, but the entry still exists when I call the API. Is there any reason why the member list would still show my account under members even though I’m no longer a patron?

Here is the output of the API call:

{

    "data": [

        {

            "attributes": {},

            "id": "1234-1234-1234",

            "relationships": {

                "user": {

                    "data": {

                        "id": "12345678",

                        "type": "user"

                    },

                    "links": {

                        "related": "https://www.patreon.com/api/oauth2/v2/user/12345678"

                    }

                }

            },

            "type": "member"

        }

    ],

    "included": [

        {

            "attributes": {},

            "id": "12345678",

            "type": "user"

        }


    ],

    "meta": {

        "pagination": {

            "total": 1

        }

    }

}

If you were charged for this month, you would stay a patron until the end of this month. That is something that you can investigate to confirm the situation.