ShopGo
1.0.0
1.0.0
  • Welcome
  • Developer Guides
    • Order Processing
    • Webhooks
      • Calculate Shipping Rates
  • Management API
    • Introduction
    • Authentication
      • Using User API Key
      • Using Platform API Key
    • Authorization
    • Objects
      • Primitives
      • Order
      • Payment
      • Shipment
      • Purchase
      • Adjustment
      • Charge
      • Attribute
    • API Endpoints
  • Platform API
    • Introduction
    • Authentication
    • Objects
    • API Endpoints
      • Tenant
Powered by GitBook
On this page
  • Get Tenant (Single)
  • Get Tenants (All)

Was this helpful?

  1. Platform API
  2. API Endpoints

Tenant

Get Tenant (Single)

GET https://api.shopgo.me/v1/platform/tenant/:id

Get single tenant object.

Path Parameters

Name
Type
Description

id

string

Tenant unique identifier

{
    "result": "success",
    "payload": {
        "tenant": <Tenant>
    }
}

Get Tenants (All)

GET https://api.shopgo.me/v1/platform/tenant/

Get list of all platform tenant. For a full breakdown of response payload see definition of Tenant object.

{
    "result": "success",
    "payload": {
        "tenants": [<Tenant>]
    }
}
PreviousAPI Endpoints

Last updated 4 years ago

Was this helpful?