Skip to content

Get a list of unregistered customers​

GET
/api/v2/unregistered-customers

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Query Parameters

_include

Include related resources (unpurchased). Note: unpurchasedCount is always included.

Type
string

Responses​

Unregistered customer list

application/json
JSON
{
  
"count": 10,
  
"totalCount": 25,
  
"limit": 50,
  
"offset": 25,
  
"data": [
  
]
}

Playground​

Authorization
Variables
Key
Value

Samples​


Get an unregistered customer by ID​

GET
/api/v2/unregistered-customers/{id}

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

id*

ID of unregistered customer to return

Type
integer
Required
Format
"int64"

Query Parameters

_include

Include related resources (unpurchased). Note: unpurchasedCount is always included.

Type
string

Responses​

Unregistered customer object

application/json
JSON
"string"

Playground​

Authorization
Variables
Key
Value

Samples​


Delete an unregistered customer​

DELETE
/api/v2/unregistered-customers/{id}

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

id*

ID of unregistered customer to delete

Type
integer
Required
Format
"int64"

Responses​

Unregistered customer deleted successfully

Playground​

Authorization
Variables
Key
Value

Samples​


Bulk delete unregistered customers​

POST
/api/v2/unregistered-customers/bulk-delete

Authorizations​

bearerAuth
Type
HTTP (bearer)

Request Body​

application/json
JSON
{
  
"ids": [
  
  
0
  
]
}

Responses​

Unregistered customers deleted successfully

Playground​

Authorization
Body

Samples​


Send email to unregistered customers​

POST
/api/v2/unregistered-customers/send-email

Authorizations​

bearerAuth
Type
HTTP (bearer)

Request Body​

application/json
JSON
{
  
"timeLimit": 5,
  
"eventFilter": 0
}

Responses​

Success message

application/json
JSON
{
  
"success": true,
  
"message": "Emails sent successfully."
}

Playground​

Authorization
Body

Samples​


Get preview of email count that will be sent​

POST
/api/v2/unregistered-customers/send-email-preview

Authorizations​

bearerAuth
Type
HTTP (bearer)

Request Body​

application/json
JSON
{
  
"timeLimit": 5,
  
"eventFilter": 0
}

Responses​

Preview count

application/json
JSON
{
  
"count": 10
}

Playground​

Authorization
Body

Samples​


Powered by VitePress OpenAPI