Total Complexity | 1 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class Pages extends \Promopult\TikTokMarketingApi\AbstractService |
||
8 | { |
||
9 | /** |
||
10 | * After an instant page is created, you can get the page ID and then use it in your lead ads or collection ads. |
||
11 | * |
||
12 | * @param int $advertiserId Advertiser ID |
||
13 | * @param ?string $status Form status, optional values: EDITED, PUBLISHED |
||
14 | * @param ?string $title Instant Form title, will filter the form that **contains** the words in the |
||
15 | * title. |
||
16 | * @param ?array $updateTimeRange Filter for Instant Forms updated in time range. |
||
17 | * ['start' => (unix timestamp), 'end' => (unix timestamp)] |
||
18 | * @param ?string $businessType Instant page type,optional values: |
||
19 | * LEAD_GEN(InstantForm), STORE_FRONT(Storefront Page). Default: LEAD_GEN |
||
20 | * @param ?int $page Current number of pages, default: 1, range: ≥ 1 |
||
21 | * @param ?int $pageSize Pagination size, default: 10, range: 1-100 |
||
22 | * @return array |
||
23 | * |
||
24 | * @throws \Throwable |
||
25 | * |
||
26 | * @see https://ads.tiktok.com/marketing_api/docs?id=1701890945985537 |
||
27 | */ |
||
28 | public function get( |
||
52 |