|
| 1 | +# Migrating from v1.x SDK (v3 API) to v2.x SDK (v4 API) |
| 2 | + |
| 3 | +Whilst every best effort is made to minimise the number of breaking changes, some breaking changes exist to ensure improved method naming conventions and compatibility with OAuth authentication and the v4 API. |
| 4 | + |
| 5 | +This guide is designed to cover changes that developers may need to make to their existing implementation when upgrading to the v2 SDK. |
| 6 | + |
| 7 | +## PHP Version |
| 8 | + |
| 9 | +The minimum supported PHP version is `8.0`. Users on older PHP versions should continue to use the v1 SDK. |
| 10 | + |
| 11 | +## Authentication |
| 12 | + |
| 13 | +Authentication is now via OAuth. It's recommended to refer to the README file's [`Getting Started`](README.md#2x-v4-api-oauth-php-80) section for implementation. |
| 14 | + |
| 15 | +Initializing the `ConvertKit_API` class now accepts a `clientID`, `clientSecret` and `accessToken` in place of the existing `api_key` and `api_secret`: |
| 16 | + |
| 17 | +```php |
| 18 | +$api = new \ConvertKit_API\ConvertKit_API( |
| 19 | + clientID: '<your_oauth_client_id>', |
| 20 | + clientSecret: '<your_oauth_client_secret>', |
| 21 | + accessToken: '<your_oauth_access_token>' |
| 22 | +); |
| 23 | +``` |
| 24 | + |
| 25 | +## Pagination |
| 26 | + |
| 27 | +For list based endpoints which fetch data from the API (such as broadcasts, custom fields, subscribers, tags, email templates, forms, purchases etc.), cursor based pagination is used. The following parameters can be specified in the API methods: |
| 28 | + |
| 29 | +- `per_page`: Defines the number of results to return, with a maximum value of 100 |
| 30 | +- `after_cursor`: When specified, returns the next page of results based on the current result's `pagination->end_cursor` value |
| 31 | +- `before_cursor`: When specified, returns the previous page of results based on the current result's `pagination->start_cursor` value |
| 32 | + |
| 33 | +## Accounts |
| 34 | + |
| 35 | +- Added: `get_account_colors()` |
| 36 | +- Added: `update_account_colors()` |
| 37 | +- Added: `get_creator_profile()` |
| 38 | +- Added: `get_email_stats()` |
| 39 | +- Added: `get_growth_stats()` |
| 40 | + |
| 41 | +## Broadcasts |
| 42 | + |
| 43 | +- Updated: `get_broadcasts()` supports pagination |
| 44 | +- Updated: `create_broadcast()`: |
| 45 | + - `email_layout_template` is now `email_template_id`. To fetch the ID of the account's email templates, refer to `get_email_templates()` |
| 46 | + - `preview_text` option added |
| 47 | + - `subscriber_filter` option added |
| 48 | +- Updated: `update_broadcast()` |
| 49 | + - `email_layout_template` is now `email_template_id`. To fetch the ID of the account's email templates, refer to `get_email_templates()` |
| 50 | + - `preview_text` option added |
| 51 | + - `subscriber_filter` option added |
| 52 | +- Changed: `destroy_broadcast()` is renamed to `delete_broadcast()` |
| 53 | + |
| 54 | +## Custom Fields |
| 55 | + |
| 56 | +- Added: `create_custom_fields()` to create multiple custom fields in a single request |
| 57 | +- Updated: `get_custom_fields()` supports pagination |
| 58 | + |
| 59 | +## Subscribers |
| 60 | + |
| 61 | +- Added: `create_subscriber()`. The concept of creating a subscriber via a form, tag or sequence is replaced with this new method. The subscriber can then be subscribed to resources (forms, tag, sequences) as necessary. |
| 62 | +- Added: `create_subscribers()` to create multiple subscribers in a single request |
| 63 | +- Added: `get_subscribers()` |
| 64 | +- Changed: `unsubscribe()` is now `unsubscribe_by_email()`. Use `unsubscribe()` for unsubscribing by a subscriber ID |
| 65 | +- Updated: `get_subscriber_tags()` supports pagination |
| 66 | + |
| 67 | +## Tags |
| 68 | + |
| 69 | +- Added: `create_tags()` to create multiple tags in a single request |
| 70 | +- Updated: `get_tags()` supports pagination |
| 71 | +- Updated: `get_tag_subscriptions()`: |
| 72 | + - supports pagination |
| 73 | + - supports filtering by subscribers by dates, covering `created_after`, `created_before`, `tagged_after` and `tagged_before` |
| 74 | + - `sort_order` is no longer supported |
| 75 | +- Changed: `tag_subscriber()` is now `tag_subscriber_by_email()`. Use `tag_subscriber()` for tagging by subscriber ID |
| 76 | + |
| 77 | +## Email Templates |
| 78 | + |
| 79 | +- Added: `get_email_templates()` |
| 80 | + |
| 81 | +## Forms |
| 82 | + |
| 83 | +- Updated: `get_forms()`: |
| 84 | + - supports pagination |
| 85 | + - only returns active forms by default. Use the `status` parameter to filter by `active`, `archived`, `trashed` or `all` |
| 86 | +- Updated: `get_landing_pages()`: |
| 87 | + - supports pagination |
| 88 | + - only returns active landing pages by default. Use the `status` parameter to filter by `active`, `archived`, `trashed` or `all` |
| 89 | +- Updated: `get_form_subscriptions()`: |
| 90 | + - supports pagination |
| 91 | + - supports filtering by subscribers by dates, covering `created_after`, `created_before`, `added_after` and `added_before` |
| 92 | + - `sort_order` is no longer supported |
| 93 | +- Changed: `add_subscriber_to_form()` is now `add_subscriber_to_form_by_email()`. Use `add_subscriber_to_form()` for adding subscriber to form by subscriber ID |
| 94 | + |
| 95 | +## Purchases |
| 96 | + |
| 97 | +- Updated: `create_purchase()` now supports named parameters for purchase data, instead of an `$options` array |
| 98 | +- Changed: `list_purchases()` is now `get_purchases()`, with pagination support |
| 99 | + |
| 100 | +## Segments |
| 101 | + |
| 102 | +- Added: `get_segments()` |
| 103 | + |
| 104 | +## Sequences |
| 105 | + |
| 106 | +- Changed: `add_subscriber_to_sequence()` is now `add_subscriber_to_sequence_by_email()`. Use `add_subscriber_to_sequence()` for adding a subscriber to a sequence by subscriber ID |
| 107 | +- Updated: `get_sequences()` supports pagination |
| 108 | +- Updated: `get_sequence_subscriptions()`: |
| 109 | + - supports pagination |
| 110 | + - supports filtering by subscribers by dates, covering `created_after`, `created_before`, `added_after` and `added_before` |
| 111 | + - `sort_order` is no longer supported |
| 112 | + |
| 113 | +## Webhooks |
| 114 | + |
| 115 | +- Added: `get_webhooks()` |
| 116 | +- Changed: `destroy_webhook()` is now `delete_webhook()` |
| 117 | + |
| 118 | +## Other |
| 119 | + |
| 120 | +- Removed: `form_subscribe()` was previously deprecated. Use `add_subscriber_to_form()` or `add_subscriber_to_form_by_email()` |
| 121 | +- Removed: `add_tag()` was previously deprecated. Use `tag_subscriber()` or `tag_subscriber_by_email()` |
0 commit comments