Sync a Connected Account
Request a connected account sync attempt for the specified connected_account_id.
Request a connected account sync attempt for the specified connected account.
Code:
await seam.connectedAccounts.sync({
connected_account_id: "f886f890-4ca5-4ce5-b248-509cbfb6c279",
});Output:
// voidRequest a connected account sync attempt for the specified connected account.
Code:
curl --include --request POST "https://connect.getseam.com/connected_accounts/sync" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"connected_account_id": "f886f890-4ca5-4ce5-b248-509cbfb6c279"
}
EOFOutput:
{}Request a connected account sync attempt for the specified connected account.
Code:
seam.connected_accounts.sync(
connected_account_id="f886f890-4ca5-4ce5-b248-509cbfb6c279"
)Output:
NoneRequest a connected account sync attempt for the specified connected account.
Code:
Output:
Request a connected account sync attempt for the specified connected account.
Code:
Output:
Request a connected account sync attempt for the specified connected account.
Code:
Output:
Request Parameters
connected_account_id String (Required)
ID of the connected account that you want to sync.
Response
Returns: void
Last updated
Was this helpful?

