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

Store Details

Developing
GET
/api/shopify_stores/{id}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path 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/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "id": 5733,
    "name": null,
    "email": "admin@mykloudy.co.uk",
    "domain": "fulfilmentchina.com",
    "myshopify_domain": "1e705a-3.myshopify.com",
    "created_at": "2023-09-26T14:11:05.268Z",
    "updated_at": "2024-06-18T01:48:00.736Z",
    "source_platform": "shopify"
}
Modified at 2024-07-18 08:53:49
Previous
Stores List
Next
Delete Store
Built with