laravel-shopify icon indicating copy to clipboard operation
laravel-shopify copied to clipboard

Webhook subscriptions additional fields

Open npabisz opened this issue 1 year ago • 1 comments

Add possibility of adding includeFields and metafieldNamespaces to webhook subscriptions as documented here.

'webhooks' => [
    [
        'topic' => 'ORDERS_CREATE',
        'address' => 'https://some-app.com/webhook/orders-create',
        // These can be either comma-separated string or array
        'metafield_namespaces' => 'custom,mynamespace',
        'include_fields' => ['id', 'note'],
    ],
    ...
]

npabisz avatar Oct 12 '23 14:10 npabisz