Does anyone know why using the v2 api to retrieve a particular list return a “List not Found Error” but using the v1 api returns the list in question?
Example Curls
V2 curl does not work
curl --request GET \ --url 'https://a.klaviyo.com/api/v2/list/LIST_ID?api_key=PRIVATE_KEY' \ --header 'Accept: application/json'V1 curl works
curl --request GET \ --url 'https://a.klaviyo.com/api/v1/list/LIST_ID?api_key=PRIVATE_KEY' \ --header 'Accept: application/json'