Backend
  1. Client API Document
Backend
  • CLIENT
    • Client API Document
      • Get Token
        POST
      • Create Store
        POST
      • Stores List
        GET
      • Store Details
        GET
      • Delete Store
        DELETE
      • Upload Image (via File)
        POST
      • Upload Image (via URL)
        POST
      • Create Store Product
        POST
      • Store Product Details
        GET
      • Update Store Product
        PUT
      • Create Order
        POST
      • Search Invoices
        GET
      • Invoice Details
        GET
  1. Client API Document

Stores List

Developing
GET
/api/shopify_stores

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
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 --request GET 'http://stage-client.dropshippinglite.com/api/shopify_stores?per_page=10&page=1' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "total_count": 3,
    "stores": [
        {
            "id": 5733,
            "name": null,
            "source_platform": "shopify",
            "email": "admin@mykloudy.co.uk",
            "domain": "fulfilmentchina.com",
            "myshopify_domain": "1e705a-3.myshopify.com"
        },
        {
            "id": 4621,
            "name": null,
            "source_platform": "shopify",
            "email": "admin@chasglobal.co",
            "domain": "fulfilmentchina.com",
            "myshopify_domain": "5a2afa.myshopify.com"
        },
        {
            "id": 2740,
            "name": null,
            "source_platform": "shopify",
            "email": "admin@getkloudy.nl",
            "domain": "dropshippinglite.com",
            "myshopify_domain": "getkloudy.myshopify.com"
        }
    ]
}
Modified at 2024-07-18 08:17:50
Previous
Create Store
Next
Store Details
Built with