File: /home/aliazzsr/api.crm.vqode.com/tests/api/ProjectsListCept.php
<?php
$I = new ApiTester($scenario);
$I->wantTo('list projects');
$I->comment('listing projects existing');
$authToken = $I->login();
$I->sendGET('projects');
$I->seeResponseCodeIs(\Codeception\Util\HttpCode::OK);
$I->seeResponseIsJson();
$I->seeResponseJsonMatchesJsonPath('$[0].id');
$I->seeResponseJsonMatchesJsonPath('$[1].name');
$I->comment('expanding projects with companies, stage, sector, and RIBA');
$I->sendGET('projects', ['expand' => 'companies,stage,sector,riba']);
$response = $I->grabResponse();
$I->seeResponseCodeIs(\Codeception\Util\HttpCode::OK);
$I->seeResponseIsJson();
$I->seeResponseJsonMatchesXpath('//companies');
$I->seeResponseJsonMatchesXpath('//stage');
$I->seeResponseJsonMatchesXpath('//sector');
$I->seeResponseJsonMatchesXpath('//riba');