GET
/
v1
/
account
/
exists
Detect Account
curl --request GET \
  --url https://api.bolt.com/v1/account/exists \
  --header 'X-Publishable-Key: <x-publishable-key>'
{
  "has_bolt_account": true
}

Headers

X-Publishable-Key
string
required

The publicly viewable identifier used to identify a merchant division. This key is found in the Developer > API section of the Bolt Merchant Dashboard.

Query Parameters

email
string

The shopper's email address is the primary mechanism for detecting an account. You must provide either a value for this parameter or for sha256_email.

sha256_email
string

The sha256 hash of the shopper's normalized email address can be used to detect an account instead of email.

phone
string

The shopper's phone number. Includes country code (e.g. +1); does not include dashes or spaces. Can be used to detect an account instead of sha256_email or email.

Response

Has Bolt Account

has_bolt_account
boolean