Delete a talon one account

How to delete an existing talon one account via API

To deletearrow-up-right a talon one account, send a DELETE request to the /api/talon_one_accounts/:id endpoint, where id is the id of the talon one account that you want to delete.

Request

DELETE https://yourdomain.commercelayer.io/api/talon_one_accounts/:id

Example

The following request tries to delete the talon one account identified by the ID "XAyRWNUzyN":

curl -g -X DELETE \
  'https://yourdomain.commercelayer.io/api/talon_one_accounts/XAyRWNUzyN' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token'

Last updated