| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace app\extra\ocean;
- class Account extends Base
- {
- /**
- * 获取升级版巨量引擎工作台下账户列表
- * https://open.oceanengine.com/labels/7/docs/1829550825614739?origin=left_nav
- * @param string $orgId
- * @param string $type
- * @param int $page
- * @param int $size
- * @return array
- */
- public function getAccountList(string $orgId = "",string $type = "AD",int $page = 1,int $size = 100): array
- {
- $param = [
- "enterprise_organization_id" => $orgId,
- "account_source" => $type,
- "page" => $page,
- "page_size" => $size
- ];
- return $this->curlGetApi("2/ebp/advertiser/list/",$param);
- }
- }
|