Skip to main content

Community

Connect Card: Webhook after successful connection

Completed

Please sign in to leave a comment.

Comments

1 comment

  • Official comment

    You can now do this with our edit_connector event which is now available as a webhook! The `editType` field tracks `UPDATE_SETUP_STATE` from `incomplete` to `connected`. 

    For example:
    {
        event: 'edit_connector',
        // ...
        editType: 'UPDATE_SETUP_STATE',
        properties: { setupState: 'connected' },
        oldProperties: { setupState: 'incomplete' }
    }

    This should help you accomplish what you're looking for, let us know!

    Thanks,

    Jimmy