Associate a Token
Prerequisites:
Getting startedInitializing Token Association
/* AccountId that associate the token */
$fromAccountId = '';
/* Token to Associate */
$tokenId = '';
/* Custom uniq ID */
$uniqId = '';
/* Define a Webhook */
$webhook = '';
/* Associate a token */
$client->associate({
$fromAccountId,
$uniqId,
$tokenId
}, $webhook);Last updated