Integration

User Identification

First you have to link the account with the Push channel to obtain a customerId.


indigitall.Link("YOUR_EXTERNAL_ID", Models.INDMChannel.push, () =>
{
    // Do something
}, (code, message) =>
{
    // Do something else
});

On the other hand, if you want to unlink the Customer's account, you have to do the following:

indigitall.Unlink(Models.INDMChannel.push, () =>
{
    // Do something
}, (code, message) =>
{
    // Do something else
});