1. Customers
TrustWILL
  • Reviews Widget Integration
  • Reviews Data API
    • Trustoo Open API — Quick Start
    • OAuth2
      • OAuth2 Merchant Authorization
      • Get OAuth2 Authorization URL
      • OAuth2 Get / Refresh Access Token
      • Revoke Token
    • Platform Management
      • Disconnect Platform Authorization
      • Get Shop Authorization Info
      • Get Shop Installation Status
      • Cancel Platform Authorization
    • Webhooks
      • Create Shop Webhook
      • Update Shop Webhook
      • Delete Shop Webhook
      • Get Shop Webhooks
    • Reviews
      • Get Review Detail
      • Get Review List
      • Create Review
      • Delete Review
      • Get Rating
    • Media Upload
      • Get Video Upload URL
      • Get Image Upload Credentials
    • Orders
      • Get Order List
    • Customer Events
      • Get Customer Event List
    • Customers
      • Email Unsubscribe
        POST
      • Create Customer Exclusion
        POST
      • Delete Customer Exclusion
        POST
      • Get Customer Exclusion List
        GET
  • Schemas
    • SuccessResponse
    • ErrorResponse
    • Pagination
    • OAuthTokenRequest
    • Webhook
    • CreateReviewRequest
    • Review
    • Rating
    • Order
    • CustomerEvent
    • CustomerExclusion
    • ImageUploadCredentials
  1. Customers

Delete Customer Exclusion

POST
/api/v1/openapi/delete_customer_exclude
Remove a customer from the exclusion list. Provide either customer_id OR email (mutually exclusive).
Authentication: HMAC signature OR OAuth2 Bearer Token
Scope: write_customers

Request

Authorization
API Key
Add parameter in header
Public-Token
Example:
Public-Token: ********************
or
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Header Params

Body Params application/jsonRequired

Example
{
    "email": "[email protected]"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://rapi.trustoo.io/api/v1/openapi/delete_customer_exclude' \
--header 'Sign: 31ff687ec862dbf14cb1a75407e1681b5bde64feb350f545c22f69c095ddbaba' \
--header 'Timestamp: 1779678340' \
--header 'Public-Token: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "[email protected]"
}'

Responses

🟢200
application/json
Exclusion deleted
Bodyapplication/json

Example
{
    "code": 0,
    "message": "string",
    "time": 0,
    "request_id": "string",
    "data": {
        "customer_id": "string",
        "first_name": "string",
        "last_name": "string",
        "email": "[email protected]",
        "phone": "string",
        "created_at": "string",
        "updated_at": "string"
    }
}
Modified at 2026-06-24 04:25:21
Previous
Create Customer Exclusion
Next
Get Customer Exclusion List
Built with