Skip to content

GetFundraisingPages

Pawel Sawicz edited this page Jan 26, 2015 · 7 revisions

GetFundraisingPages

C# Usage

var response = client.Page.ListAll();
var pagesId = response.Select(x => new
                    {
                        PageId = x.PageId
                    });

PHP Usage

$response = $client->Page->ListAll();

foreach ($response as $key ) {
	echo $key->pageId;
	echo "\n";
}