1. Platform Management
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
        POST
      • Get Shop Authorization Info
        GET
      • Get Shop Installation Status
        GET
      • Cancel Platform Authorization
        POST
    • 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
      • Create Customer Exclusion
      • Delete Customer Exclusion
      • Get Customer Exclusion List
  • Schemas
    • SuccessResponse
    • ErrorResponse
    • Pagination
    • OAuthTokenRequest
    • Webhook
    • CreateReviewRequest
    • Review
    • Rating
    • Order
    • CustomerEvent
    • CustomerExclusion
    • ImageUploadCredentials
  1. Platform Management

Get Shop Installation Status

GET
/api/v1/openapi/get_shop_install_status
Check if a shop has installed (authorized) a platform. Uses platform credential authentication; does not verify current authorization validity.
Authentication: client_id + client_secret in query parameters
Scope: read_shop_install_status (platform-level config check)

Request

Query Params

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/get_shop_install_status?client_id=trustwill&client_secret=trustwill_2026&shop_id=72738668786&myshopify_domain=example.myshopify.com'

Responses

🟢200
application/json
Installation status
Bodyapplication/json

Example
{
    "code": 0,
    "message": "string",
    "time": 0,
    "request_id": "string",
    "data": {
        "is_installed": true,
        "installed_at": "string"
    }
}
Modified at 2026-06-24 04:25:21
Previous
Get Shop Authorization Info
Next
Cancel Platform Authorization
Built with