Gennova GraphQL API

GraphQL API v1 — Queries & Mutations

Overview · Guide · Authentication · Tester · Errors · Conventions · API Reference · Exports

Overview

Gennova provides a single GraphQL endpoint for all operations. Send POST requests with your query or mutation.

Endpoint
https://graphql.gennovadev.com/v1/admin

Quick Start

curl -X POST "https://graphql.gennovadev.com/v1/admin" \
  -H "Content-Type: application/json" \
  -H "x-gennova-domain: your-slug.mygennova.com" \
  -d '{"query": "{ shopExists { id } }"}'

Developer Guide

Base URL
https://graphql.gennovadev.com
POST /v1/admin
Content-Type: application/json
Request Shape
{
  "operationName": "string; optional when document has multiple operations",
  "query": "query or mutation string",
  "variables": "object; optional"
}
Observability
Request header: x-request-id
Response id: extensions.request_id
Timing: extensions.timing_ms.total

Authentication

Send x-gennova-domain for public tenant-scoped operations (shopExists, shopLogin, shopRefreshToken). With a valid x-gennova-dashboard-access-token, the domain header is optional (tenant is taken from the token). If both are sent, they must refer to the same shop. API channel calls that use x-gennova-api-access-token still typically need the domain header unless your client resolves tenant another way.

Public (Front)
x-gennova-domain only. Examples: shopExists, shopLogin.
Dashboard
Add x-gennova-dashboard-access-token with OAuth2 access token. x-gennova-domain is optional once authenticated; sending it must match the token's shop.
API
Add x-gennova-api-access-token for server-to-server calls.
Auth Matrix
channel required headers notes
Public / Front x-gennova-domain Tenant-scoped public operations such as shopExists and shopLogin.
Dashboard x-gennova-dashboard-access-token Authenticated shop admin calls. Domain header is optional after token auth but must match if sent.
API / Server-to-server x-gennova-api-access-token Server-to-server integration calls using API/OAuth token policies.

GraphQL Tester

Login and execute GraphQL directly from docs. Tokens are stored only in this browser's localStorage.

Not logged in
1. Login

2. Execute GraphQL
Request headers
Content-Type: application/json
Response
Run a query to see the response.

Errors

Errors are returned in GraphQL errors[].extensions.code. Codes use UPPER_SNAKE_CASE in GraphQL error extensions.code.

Error Response Shape
{
  "data": null,
  "errors": [
    {
      "extensions": {
        "code": "VALIDATION_ERROR"
      },
      "locations": [],
      "message": "Human-readable or machine-readable error message"
    }
  ],
  "extensions": {
    "request_id": "req_xxx",
    "timing_ms": {
      "total": 12
    }
  }
}
Error Headers
X-RateLimit-Limit — Leaky bucket capacity for the request context.
X-RateLimit-Remaining — Remaining request cost budget.
X-RateLimit-Reset — Approximate Unix timestamp when bucket budget recovers.
Retry-After — Present on HTTP 429 rate-limited responses.
Error Codes (203)
AUTH 14 codes

Authentication, authorization, token, tenant, and membership errors.

code description
AUTH_FORBIDDEN_MISSING_SCOPE Authentication, authorization, token, tenant, and membership errors.
AUTH_FORBIDDEN_MISSING_SCOPES Authentication, authorization, token, tenant, and membership errors.
AUTH_INVALID_CREDENTIALS Authentication, authorization, token, tenant, and membership errors.
AUTH_INVALID_OTP Authentication, authorization, token, tenant, and membership errors.
AUTH_MEMBERSHIP_NOT_FOUND Authentication, authorization, token, tenant, and membership errors.
AUTH_NOT_A_MEMBER Authentication, authorization, token, tenant, and membership errors.
AUTH_REQUIRE_OTP Authentication, authorization, token, tenant, and membership errors.
AUTH_SCOPE_INACTIVE Authentication, authorization, token, tenant, and membership errors.
AUTH_SHOP_INVALID Authentication, authorization, token, tenant, and membership errors.
AUTH_TENANT_MISMATCH Authentication, authorization, token, tenant, and membership errors.
AUTH_TOKEN_EXPIRED Authentication, authorization, token, tenant, and membership errors.
AUTH_TOKEN_INVALID Authentication, authorization, token, tenant, and membership errors.
AUTH_TOKEN_MISSING Authentication, authorization, token, tenant, and membership errors.
AUTH_TOKEN_MISSING_SHOP_ID Authentication, authorization, token, tenant, and membership errors.
BRANCH 1 codes

Domain-specific API error.

code description
BRANCH_IN_USE Domain-specific API error.
CHANNEL 6 codes

Channel and storefront checkout configuration errors.

code description
CHANNEL_IN_USE Channel and storefront checkout configuration errors.
CHANNEL_STOREFRONT_CHECKOUT_INVALID Channel and storefront checkout configuration errors.
CHANNEL_STOREFRONT_PAYMENT_DEFAULT_NOT_IN_WHITELIST Channel and storefront checkout configuration errors.
CHANNEL_STOREFRONT_PAYMENT_METHOD_INACTIVE Channel and storefront checkout configuration errors.
CHANNEL_STOREFRONT_PAYMENT_METHOD_NOT_FOUND Channel and storefront checkout configuration errors.
CHANNEL_STOREFRONT_PAYMENT_METHOD_WRONG_SHOP Channel and storefront checkout configuration errors.
COMMERCE 6 codes

Commerce deposit and storefront commerce errors.

code description
COMMERCE_DEPOSIT_CANNOT_CANCEL_MATERIALIZED Commerce deposit and storefront commerce errors.
COMMERCE_DEPOSIT_CONFIRM_REQUIRES_PAYMENTS_SCOPE Commerce deposit and storefront commerce errors.
COMMERCE_DEPOSIT_EXCEEDS_ORDER_TOTAL Commerce deposit and storefront commerce errors.
COMMERCE_DEPOSIT_NO_LINE_ITEMS Commerce deposit and storefront commerce errors.
COMMERCE_DEPOSIT_ORDER_TOTAL_ZERO Commerce deposit and storefront commerce errors.
COMMERCE_DEPOSIT_PARENT_CLOSED Commerce deposit and storefront commerce errors.
CONFLICT 4 codes

Duplicate or conflicting resource state errors.

code description
CONFLICT_ALREADY_EXISTS Duplicate or conflicting resource state errors.
CONFLICT_BARCODE_DUPLICATE Duplicate or conflicting resource state errors.
CONFLICT_DUPLICATE Duplicate or conflicting resource state errors.
CONFLICT_SKU_DUPLICATE Duplicate or conflicting resource state errors.
CONTEXT 5 codes

GraphQL execution context and shop/user context errors.

code description
CONTEXT_DB_NOT_IN_CONTEXT GraphQL execution context and shop/user context errors.
CONTEXT_SHOP_CONTEXT_REQUIRED GraphQL execution context and shop/user context errors.
CONTEXT_SHOP_ID_INVALID GraphQL execution context and shop/user context errors.
CONTEXT_SHOP_ID_MISMATCH GraphQL execution context and shop/user context errors.
CONTEXT_USER_ID_NOT_IN_CONTEXT GraphQL execution context and shop/user context errors.
CUSTOMER 2 codes

Customer validation and usage errors.

code description
CUSTOMER_CODE_GENNOVA_SHOP_RESERVED Customer validation and usage errors.
CUSTOMER_IN_USE Customer validation and usage errors.
FORBIDDEN 3 codes

Permission or operation access errors.

code description
FORBIDDEN_ACCESS_DENIED Permission or operation access errors.
FORBIDDEN_OPERATION_NOT_ALLOWED Permission or operation access errors.
FORBIDDEN_RESOURCE_LOCKED Permission or operation access errors.
FULFILLMENT 19 codes

Fulfillment, shipment, and delivery errors.

code description
FULFILLMENT_CANNOT_BE_CANCELLED Fulfillment, shipment, and delivery errors.
FULFILLMENT_CARRIER_NOT_FOUND Fulfillment, shipment, and delivery errors.
FULFILLMENT_CARRIER_OPS_NOT_VERIFIED Fulfillment, shipment, and delivery errors.
FULFILLMENT_INTEGRATED_CARRIER_SHIPMENT_REQUIRES_PARTNER_ORDER Fulfillment, shipment, and delivery errors.
FULFILLMENT_LINES_REQUIRED Fulfillment, shipment, and delivery errors.
FULFILLMENT_LINE_INVALID_INVENTORY_TYPE Fulfillment, shipment, and delivery errors.
FULFILLMENT_LINE_MISSING_BRANCH Fulfillment, shipment, and delivery errors.
FULFILLMENT_LINE_MISSING_CHANNEL Fulfillment, shipment, and delivery errors.
FULFILLMENT_LINE_MISSING_WAREHOUSE Fulfillment, shipment, and delivery errors.
FULFILLMENT_LINE_ORDER_LINE_NOT_FOUND Fulfillment, shipment, and delivery errors.
FULFILLMENT_LINE_ORDER_MISMATCH Fulfillment, shipment, and delivery errors.
FULFILLMENT_LINE_QUANTITY_EXCEEDED Fulfillment, shipment, and delivery errors.
FULFILLMENT_LOT_EDIT_NOT_ALLOWED Fulfillment, shipment, and delivery errors.
FULFILLMENT_MISSING_ORDER_ID Fulfillment, shipment, and delivery errors.
FULFILLMENT_ORDER_CANCELLED Fulfillment, shipment, and delivery errors.
FULFILLMENT_ORDER_NOT_FOUND Fulfillment, shipment, and delivery errors.
FULFILLMENT_ORDER_SHIPPING_ADDRESS_INCOMPLETE Fulfillment, shipment, and delivery errors.
FULFILLMENT_SHIPPING_ADDRESS_LOCKED Fulfillment, shipment, and delivery errors.
FULFILLMENT_TRACKING_NUMBER_REQUIRED Fulfillment, shipment, and delivery errors.
GENNOVA 2 codes

Gennova internal shop target errors.

code description
GENNOVA_SHOP_TARGET_FORBIDDEN Gennova internal shop target errors.
GENNOVA_SHOP_TARGET_NOT_FOUND Gennova internal shop target errors.
INTERNAL 3 codes

Internal server or database errors.

code description
INTERNAL_DB_ERROR Internal server or database errors.
INTERNAL_SERVER_ERROR Internal server or database errors.
INTERNAL_UNKNOWN_ERROR Internal server or database errors.
INVALID 2 codes

Domain-specific API error.

code description
INVALID_CANCELLED_STATUS Domain-specific API error.
INVALID_STATE_TRANSITION Domain-specific API error.
KOV 10 codes

KiotViet sync and provider errors.

code description
KOV_TRANSFER_BRANCH_MAPPING_INCOMPLETE KiotViet sync and provider errors.
KOV_TRANSFER_CHANNEL_SYNC_BLOCKED KiotViet sync and provider errors.
KOV_TRANSFER_PROVIDER_NOT_CONNECTED KiotViet sync and provider errors.
KOV_TRANSFER_SNAPSHOT_SYNC_FAILED KiotViet sync and provider errors.
KOV_TRANSFER_SYNC_BY_IDS_FAILED KiotViet sync and provider errors.
KOV_TRANSFER_SYNC_DATE_RANGE_REQUIRED KiotViet sync and provider errors.
KOV_TRANSFER_SYNC_DATE_SCOPE_REQUIRED KiotViet sync and provider errors.
KOV_TRANSFER_SYNC_FILTER_CONFLICT KiotViet sync and provider errors.
KOV_TRANSFER_SYNC_INVALID_IDS KiotViet sync and provider errors.
KOV_TRANSFER_SYNC_TOO_MANY_ORIGINAL_IDS KiotViet sync and provider errors.
LICENSE 1 codes

License and entitlement errors.

code description
LICENSE_GENNOVA_ADMIN_REQUIRED License and entitlement errors.
LOGIN 2 codes

Login-specific errors.

code description
LOGIN_ERROR Login-specific errors.
LOGIN_FAILED Login-specific errors.
MISSING 1 codes

Domain-specific API error.

code description
MISSING_REQUIRED_FIELD Domain-specific API error.
NOT 7 codes

Resource not found errors.

code description
NOT_FOUND_DRAFT_ORDER Resource not found errors.
NOT_FOUND_ORDER Resource not found errors.
NOT_FOUND_PRODUCT Resource not found errors.
NOT_FOUND_RESOURCE Resource not found errors.
NOT_FOUND_SHOP Resource not found errors.
NOT_FOUND_USER Resource not found errors.
NOT_FOUND_VARIANT Resource not found errors.
ORDER 34 codes

Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.

code description
ORDER_ALREADY_CANCELLED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CANCEL_HAS_FULFILLMENTS Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CANCEL_HAS_MEINVOICE_PAYLOAD Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CANCEL_HAS_RETURN_ORDERS Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CANCEL_HAS_TRANSACTIONS Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CANNOT_BE_CANCELLED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_BRANCH_ID_REQUIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_CHANNEL_ID_REQUIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_CHECKOUT_PRICE_STALE Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_CREDIT_LIMIT_EXCEEDED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_CUSTOMER_ID_REQUIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_DRAFT_ORDER_ALREADY_CONVERTED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_DRAFT_ORDER_ID_REQUIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_DRAFT_ORDER_NOT_FOUND Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_DRAFT_ORDER_NO_LINES Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_EXPIRY_DAYS_REQUIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_ITEM_EXPIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_LINE_MISSING_UNIT Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_SERIAL_REQUIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_CREATE_VALIDATION_FAILED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_EXTERNAL_SOURCE_READONLY Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_LICENSE_GENNOVA_SHOP_ID_REQUIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_LINE_EXTERNAL_SOURCE_READONLY Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_NOT_FOUND Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_UPDATE_ADDRESS_LOCKED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_UPDATE_BRANCH_ID_REQUIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_UPDATE_CHANNEL_ID_REQUIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_UPDATE_EXPIRY_DAYS_REQUIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_UPDATE_EXTERNAL_SOURCE_READONLY Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_UPDATE_ITEM_EXPIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_UPDATE_PAYMENT_METHOD_NOT_FOUND Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_UPDATE_SERIAL_REQUIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_UPDATE_VALIDATION_FAILED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
ORDER_UPDATE_WARE_HOUSE_ID_REQUIRED Sales order lifecycle, validation, payment, fulfillment, and cancellation errors.
PRE 8 codes

Pre-order and pre-purchase order errors.

code description
PRE_ORDER_DELETE_NOT_CANCELLED Pre-order and pre-purchase order errors.
PRE_ORDER_DUPLICATE_COPY_LINES_INCOMPLETE Pre-order and pre-purchase order errors.
PRE_ORDER_DUPLICATE_NO_LINES Pre-order and pre-purchase order errors.
PRE_ORDER_DUPLICATE_SOURCE_NOT_FOUND Pre-order and pre-purchase order errors.
PRE_ORDER_HAS_SUCCESSFUL_TRANSACTIONS Pre-order and pre-purchase order errors.
PRE_ORDER_LINE_MISSING_UNIT Pre-order and pre-purchase order errors.
PRE_ORDER_NOT_FOUND Pre-order and pre-purchase order errors.
PRE_PURCHASE_ORDER_NOT_FOUND Pre-order and pre-purchase order errors.
PRODUCT 5 codes

Product, variant, combo, and inventory item usage errors.

code description
PRODUCT_COMBO_BOM_ADD_LOCKED Product, variant, combo, and inventory item usage errors.
PRODUCT_COMBO_QUANTITY_LOCKED Product, variant, combo, and inventory item usage errors.
PRODUCT_COMBO_TYPE_LOCKED Product, variant, combo, and inventory item usage errors.
PRODUCT_IN_USE Product, variant, combo, and inventory item usage errors.
PRODUCT_ITEM_IN_USE Product, variant, combo, and inventory item usage errors.
PURCHASE 8 codes

Purchase order and purchase return order errors.

code description
PURCHASE_ORDER_CANCEL_HAS_FULFILLMENTS Purchase order and purchase return order errors.
PURCHASE_ORDER_CREATE_EXPIRY_DAYS_REQUIRED Purchase order and purchase return order errors.
PURCHASE_ORDER_CREATE_ITEM_EXPIRED Purchase order and purchase return order errors.
PURCHASE_ORDER_CREATE_SERIAL_REQUIRED Purchase order and purchase return order errors.
PURCHASE_ORDER_CREATE_VALIDATION_FAILED Purchase order and purchase return order errors.
PURCHASE_ORDER_NOT_FOUND Purchase order and purchase return order errors.
PURCHASE_RETURN_ORDER_CANCEL_HAS_FULFILLMENTS Purchase order and purchase return order errors.
PURCHASE_RETURN_ORDER_NOT_FOUND Purchase order and purchase return order errors.
REFRESH 3 codes

Refresh-token-specific errors.

code description
REFRESH_ERROR Refresh-token-specific errors.
REFRESH_FAILED Refresh-token-specific errors.
REFRESH_SHOP_DOMAIN_MISMATCH Refresh-token-specific errors.
REQUEST 7 codes

Request body, JSON, multipart, or tenant-domain parsing errors.

code description
REQUEST_DOMAIN_INVALID_FORMAT Request body, JSON, multipart, or tenant-domain parsing errors.
REQUEST_DOMAIN_INVALID_SLUG Request body, JSON, multipart, or tenant-domain parsing errors.
REQUEST_DOMAIN_REQUIRED Request body, JSON, multipart, or tenant-domain parsing errors.
REQUEST_INVALID_BODY Request body, JSON, multipart, or tenant-domain parsing errors.
REQUEST_INVALID_JSON Request body, JSON, multipart, or tenant-domain parsing errors.
REQUEST_INVALID_MULTIPART Request body, JSON, multipart, or tenant-domain parsing errors.
REQUEST_SHOP_NOT_FOUND Request body, JSON, multipart, or tenant-domain parsing errors.
RETURN 10 codes

Return order errors.

code description
RETURN_ORDER_CANCEL_HAS_FULFILLMENTS Return order errors.
RETURN_ORDER_COMBO_FIELDS_REQUIRED Return order errors.
RETURN_ORDER_LINE_NOT_IN_ORDER Return order errors.
RETURN_ORDER_LINE_QUANTITY_EXCEEDED Return order errors.
RETURN_ORDER_NOT_FOUND Return order errors.
RETURN_ORDER_ORDER_ID_REQUIRED Return order errors.
RETURN_ORDER_ORDER_NOT_FOUND Return order errors.
RETURN_ORDER_ORDER_NOT_IN_SHOP Return order errors.
RETURN_ORDER_ORDER_NO_LINES Return order errors.
RETURN_ORDER_PARENT_ORDER_CANCELLED Return order errors.
SHOP 1 codes

Shop task, shop context, and shop-specific errors.

code description
SHOP_TASK_DUPLICATE_ENQUEUE Shop task, shop context, and shop-specific errors.
SUPPLIER 1 codes

Supplier validation and usage errors.

code description
SUPPLIER_IN_USE Supplier validation and usage errors.
TRANSACTION 16 codes

Payment transaction and PSP operation errors.

code description
TRANSACTION_CANNOT_CANCEL_HAS_REFUNDS Payment transaction and PSP operation errors.
TRANSACTION_CANNOT_CANCEL_SUCCESS Payment transaction and PSP operation errors.
TRANSACTION_INVALID_AMOUNT Payment transaction and PSP operation errors.
TRANSACTION_INVALID_STATE_TRANSITION Payment transaction and PSP operation errors.
TRANSACTION_MISSING_CANCELLED_REASON Payment transaction and PSP operation errors.
TRANSACTION_MISSING_ORDER_ID Payment transaction and PSP operation errors.
TRANSACTION_ORDER_MISSING_BRANCH Payment transaction and PSP operation errors.
TRANSACTION_ORDER_MISSING_CHANNEL Payment transaction and PSP operation errors.
TRANSACTION_ORDER_NOT_FOUND Payment transaction and PSP operation errors.
TRANSACTION_OVERPAYMENT Payment transaction and PSP operation errors.
TRANSACTION_PAYOS_CANCEL_FAILED Payment transaction and PSP operation errors.
TRANSACTION_PAYOS_CANCEL_FORBIDDEN_PAID Payment transaction and PSP operation errors.
TRANSACTION_PAYOS_GET_INFO_FAILED Payment transaction and PSP operation errors.
TRANSACTION_PSP_LINK_LOCKED Payment transaction and PSP operation errors.
TRANSACTION_PSP_MANUAL_CONFIRM_FORBIDDEN Payment transaction and PSP operation errors.
TRANSACTION_REQUIRES_PAYMENTS_SCOPE Payment transaction and PSP operation errors.
VALIDATION 8 codes

Input validation and missing field errors.

code description
VALIDATION_EMAIL_REQUIRED Input validation and missing field errors.
VALIDATION_ERROR Input validation and missing field errors.
VALIDATION_INVALID_FORMAT Input validation and missing field errors.
VALIDATION_INVALID_TYPE Input validation and missing field errors.
VALIDATION_INVALID_VALUE Input validation and missing field errors.
VALIDATION_PASSWORD_REQUIRED Input validation and missing field errors.
VALIDATION_REFRESH_TOKEN_REQUIRED Input validation and missing field errors.
VALIDATION_REQUIRED Input validation and missing field errors.
VARIANT 4 codes

Domain-specific API error.

code description
VARIANT_INVENTORY_ITEM_TYPE_LOCKED Domain-specific API error.
VARIANT_INVENTORY_TRACKED_LOCKED Domain-specific API error.
VARIANT_IN_USE Domain-specific API error.
VARIANT_LOT_REQUIRED_LOCKED Domain-specific API error.
WAREHOUSE 1 codes

Domain-specific API error.

code description
WAREHOUSE_IN_USE Domain-specific API error.
WRITE 9 codes

Generic write verifier errors.

code description
WRITE_CANNOT_CHANGE_IDENTITY Generic write verifier errors.
WRITE_INVALID_FIELD_TYPE Generic write verifier errors.
WRITE_INVALID_FIELD_VALUE Generic write verifier errors.
WRITE_MISSING_DB_SESSION Generic write verifier errors.
WRITE_MISSING_OBJ_ID Generic write verifier errors.
WRITE_MISSING_REQUIRED_FIELD Generic write verifier errors.
WRITE_MISSING_SHOP_ID Generic write verifier errors.
WRITE_MISSING_USER_ID Generic write verifier errors.
WRITE_RESOURCE_LOCKED Generic write verifier errors.

Conventions

Pagination
Arguments: limit offset
Response metadata: extensions.paginate

Some live proxy fields may override paginate metadata from provider counts.

Filtering & Sorting
Filters: where search
Sort argument: orderby
{
  "has": 1,
  "has_any": [
    1,
    2
  ],
  "is_empty": false
}
Rate Limit & Exports

On 429, wait Retry-After seconds before retrying.

X-RateLimit-Limit X-RateLimit-Remaining X-RateLimit-Reset Retry-After

API Reference

Channel:

Get

+ POST front

shopExists

ShopExistsResult!
✅ Public
+ POST dashboard

amisACTOpenAccount

AmisACTOpenAccounts
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisACTOpenAccounts

[AmisACTOpenAccounts!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisACTOpenAllOrganizationUnit

AmisACTOpenAllOrganizationUnits
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisACTOpenAllOrganizationUnits

[AmisACTOpenAllOrganizationUnits!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisAccountObject

AmisAccountObjects
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisAccountObjects

[AmisAccountObjects!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisBankAccount

AmisBankAccounts
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisBankAccounts

[AmisBankAccounts!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisCompanyInfo

AmisCompanyInfo
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisCompanyInfos

[AmisCompanyInfo!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisExpenseItem

AmisExpenseItems
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisExpenseItems

[AmisExpenseItems!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisInventoryItem

AmisInventoryItems
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisInventoryItems

[AmisInventoryItems!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisJob

AmisJobs
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisJobs

[AmisJobs!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisLastSyncTim

AmisLastSyncTimes
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisLastSyncTimes

[AmisLastSyncTimes!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisListInventoryBalance

AmisListInventoryBalance
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisListInventoryBalances

[AmisListInventoryBalance!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisOption

AmisOptions
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisOptions

[AmisOptions!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisPaymentTerm

AmisPaymentTerms
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisPaymentTerms

[AmisPaymentTerms!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisProjectWork

AmisProjectWorks
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisProjectWorks

[AmisProjectWorks!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisStock

AmisStocks
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisStocks

[AmisStocks!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisUnit

AmisUnits
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

amisUnits

[AmisUnits!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

celeryBeatTaskRun

CeleryBeatTaskRun
🔒 Oauth2: Required access scope read.tasks
+ POST dashboard

celeryBeatTaskRuns

[CeleryBeatTaskRun!]!
🔒 Oauth2: Required access scope read.tasks
+ POST dashboard

countries

[Country!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

country

Country
🔒 Oauth2: Required access scope read.shop
+ POST front

dashboardApis

DashboardApis!
✅ Public
+ POST dashboard

dashboardAvailable

JSON!
🔐 Auth
+ POST dashboard

district

District
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

districts

[District!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

fileExists

FileExistsResponse!
🔒 Oauth2: Required access scope read.media
+ POST dashboard

fulfillmentShippingQuote

JSON
🔐 Auth
+ POST dashboard

fulfillmentStatusOptions

JSON
🔐 Auth
+ POST dashboard

fulfillmentViettelServiceOptions

JSON
🔐 Auth
+ POST dashboard

inventoryItemOnhandDocuments

JSON
🔐 Auth
+ POST dashboard

kovCustomer

KovCustomer
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

kovCustomers

[KovCustomer!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

kovInvoice

KovInvoice
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

kovInvoices

[KovInvoice!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

kovProduct

KovProduct
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

kovProducts

[KovProduct!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

kovPurchase

KovPurchase
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

kovPurchases

[KovPurchase!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

kovReturn

KovReturn
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

kovReturns

[KovReturn!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

kovSupplier

KovSupplier
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

kovSuppliers

[KovSupplier!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

kovToShopBranch

KovToShopBranch
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

kovToShopBranches

[KovToShopBranch!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

kovToShopChannel

KovToShopChannel
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

kovToShopChannels

[KovToShopChannel!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

kovTransfer

KovTransfer
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

kovTransfers

[KovTransfer!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

meinvoiceTemplate

MeinvoiceTemplate
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

meinvoiceTemplates

[MeinvoiceTemplate!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

memberSessionInfo

MemberSessionInfo!
🔐 Auth
+ POST dashboard

myAccessibleShops

[AccessibleShopRow!]!
🔐 Auth
+ POST dashboard

nhanhBusiness

NhanhBusiness
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhBusinesss

[NhanhBusiness!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhCustomer

NhanhCustomer
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhCustomers

[NhanhCustomer!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhDepartment

NhanhDepartment
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhDepartments

[NhanhDepartment!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhDepot

NhanhDepot
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhDepots

[NhanhDepot!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhOrder

NhanhOrder
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhOrderReturn

NhanhOrderReturn
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhOrderReturns

[NhanhOrderReturn!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhOrders

[NhanhOrder!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhProduct

NhanhProduct
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhProducts

[NhanhProduct!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhSupplier

NhanhSupplier
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhSuppliers

[NhanhSupplier!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhToShopChannel

NhanhToShopChannel
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhToShopChannels

[NhanhToShopChannel!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhToShopLocation

NhanhToShopLocation
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhToShopLocations

[NhanhToShopLocation!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhUser

NhanhUser
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

nhanhUsers

[NhanhUser!]!
🔒 Oauth2: Required access scope read.integrations
+ POST front

ping

String!
✅ Public
+ POST dashboard

province

Province
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

provinces

[Province!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

sapoInboundBatchPeek

JSON
🔐 Auth
+ POST dashboard

sapoLocation

SapoLocation
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

sapoLocations

[SapoLocation!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

sapoOrder

SapoOrder
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoOrderProxies

[SapoOrderProxy!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoOrderReturn

SapoOrderReturn
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoOrderReturns

[SapoOrderReturn!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoOrders

[SapoOrder!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoProduct

SapoProduct
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoProductProxies

[SapoProductProxy!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoProducts

[SapoProduct!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoReceiveInventories

[SapoReceiveInventory!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoReceiveInventory

SapoReceiveInventory
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoReceiveInventoryProxies

[SapoReceiveInventoryProxy!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoShop

SapoShop
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

sapoShops

[SapoShop!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

sapoSource

SapoSource
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoSources

[SapoSource!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoStockTransfer

SapoStockTransfer
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoStockTransferProxies

[SapoStockTransferProxy!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoStockTransfers

[SapoStockTransfer!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoSupplier

SapoSupplier
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

sapoSupplierReturn

SapoSupplierReturn
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoSupplierReturnProxies

[SapoSupplierReturnProxy!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoSupplierReturns

[SapoSupplierReturn!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoSuppliers

[SapoSupplier!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

sapoToShopChannel

SapoToShopChannel
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoToShopChannels

[SapoToShopChannel!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoToShopLocation

SapoToShopLocation
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

sapoToShopLocations

[SapoToShopLocation!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

shop

Shop
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopAccessToken

ShopAccessToken
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopAccessTokens

[ShopAccessToken!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopAction

ShopAction
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopActions

[ShopAction!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopActivities

[ShopActivity!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopActivity

ShopActivity
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopAffiliate

ShopAffiliate
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopAffiliateProduct

ShopAffiliateProduct
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopAffiliateProducts

[ShopAffiliateProduct!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopAffiliateTransaction

ShopAffiliateTransaction
🔒 Oauth2: Required access scope read.payments
+ POST dashboard

shopAffiliateTransactions

[ShopAffiliateTransaction!]!
🔒 Oauth2: Required access scope read.payments
+ POST dashboard

shopAffiliates

[ShopAffiliate!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopApp

ShopApp
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

shopAppInstallation

ShopAppInstallation
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

shopAppInstallations

[ShopAppInstallation!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

shopApps

[ShopApp!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

shopArticle

ShopArticle
🔒 Oauth2: Required access scope read.article
+ POST dashboard

shopArticleTranslation

ShopArticleTranslation
🔒 Oauth2: Required access scope read.article
+ POST dashboard

shopArticleTranslations

[ShopArticleTranslation!]!
🔒 Oauth2: Required access scope read.article
+ POST dashboard

shopArticles

[ShopArticle!]!
🔒 Oauth2: Required access scope read.article
+ POST dashboard

shopAsyncJob

ShopAsyncJob
🔒 Oauth2: Required access scope read.tasks
+ POST dashboard

shopAsyncJobs

[ShopAsyncJob!]!
🔒 Oauth2: Required access scope read.tasks
+ POST dashboard

shopAttachment

ShopAttachment
🔒 Oauth2: Required access scope read.fulfillment
+ POST dashboard

shopAttachments

[ShopAttachment!]!
🔒 Oauth2: Required access scope read.fulfillment
+ POST dashboard

shopAttribute

ShopAttribute
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopAttributeGroup

ShopAttributeGroup
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopAttributeGroups

[ShopAttributeGroup!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopAttributes

[ShopAttribute!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopBank

ShopBank
🔒 Oauth2: Required access scope read.payments
+ POST dashboard

shopBanks

[ShopBank!]!
🔒 Oauth2: Required access scope read.payments
+ POST dashboard

shopBlog

ShopBlog
🔒 Oauth2: Required access scope read.blog
+ POST dashboard

shopBlogTranslation

ShopBlogTranslation
🔒 Oauth2: Required access scope read.blog
+ POST dashboard

shopBlogTranslations

[ShopBlogTranslation!]!
🔒 Oauth2: Required access scope read.blog
+ POST dashboard

shopBlogs

[ShopBlog!]!
🔒 Oauth2: Required access scope read.blog
+ POST dashboard

shopBranch

ShopBranch
🔒 Oauth2: Required access scope read.locations
+ POST dashboard

shopBranches

[ShopBranch!]!
🔒 Oauth2: Required access scope read.locations
+ POST dashboard

shopBrand

ShopBrand
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopBrands

[ShopBrand!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopCarrier

ShopCarrier
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopCarriers

[ShopCarrier!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopChannel

ShopChannel
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopChannelCheckoutTranslation

ShopChannelCheckoutTranslation
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopChannelCheckoutTranslations

[ShopChannelCheckoutTranslation!]!
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopChannelCurrencies

[ShopChannelCurrency!]!
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopChannelCurrency

ShopChannelCurrency
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopChannelDomain

ShopChannelDomain
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopChannelDomains

[ShopChannelDomain!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopChannelLanguage

ShopChannelLanguage
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopChannelLanguages

[ShopChannelLanguage!]!
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopChannelLinkListLinkTranslation

ShopChannelLinkListLinkTranslation
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopChannelLinkListLinkTranslations

[ShopChannelLinkListLinkTranslation!]!
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopChannelLinkListTranslation

ShopChannelLinkListTranslation
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopChannelLinkListTranslations

[ShopChannelLinkListTranslation!]!
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopChannelLinkLists

[ShopChannelLinkList!]!
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopChannelProvider

ShopChannelProvider
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

shopChannelProviders

[ShopChannelProvider!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

shopChannelTemplate

ShopChannelTemplate
🔒 Oauth2: Required access scope read.theme
+ POST dashboard

shopChannelTemplateAsset

ShopChannelTemplateAsset
🔒 Oauth2: Required access scope read.theme
+ POST dashboard

shopChannelTemplateAssets

[ShopChannelTemplateAsset!]!
🔒 Oauth2: Required access scope read.theme
+ POST dashboard

shopChannelTemplates

[ShopChannelTemplate!]!
🔒 Oauth2: Required access scope read.theme
+ POST dashboard

shopChannelThemeTemplate

ShopChannelThemeTemplate
🔒 Oauth2: Required access scope read.theme
+ POST dashboard

shopChannelThemeTemplates

[ShopChannelThemeTemplate!]!
🔒 Oauth2: Required access scope read.theme
+ POST dashboard

shopChannels

[ShopChannel!]!
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopCheckoutOrder

ShopCheckoutOrder
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopCheckoutOrderLine

ShopCheckoutOrderLine
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopCheckoutOrderLines

[ShopCheckoutOrderLine!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopCheckoutOrders

[ShopCheckoutOrder!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopCompanies

[ShopCompany!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopCompany

ShopCompany
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopCountries

[ShopCountry!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopCountry

ShopCountry
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopCurrencies

[ShopCurrency!]!
🔒 Oauth2: Required access scope read.prices
+ POST dashboard

shopCurrency

ShopCurrency
🔒 Oauth2: Required access scope read.prices
+ POST dashboard

shopCustomer

ShopCustomer
🔒 Oauth2: Required access scope read.customers
+ POST dashboard

shopCustomerBillingAddress

ShopCustomerBillingAddress
🔒 Oauth2: Required access scope read.customers
+ POST dashboard

shopCustomerBillingAddresses

[ShopCustomerBillingAddress!]!
🔒 Oauth2: Required access scope read.customers
+ POST dashboard

shopCustomerGroup

ShopCustomerGroup
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopCustomerGroups

[ShopCustomerGroup!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopCustomerShippingAddress

ShopCustomerShippingAddress
🔒 Oauth2: Required access scope read.customers
+ POST dashboard

shopCustomerShippingAddresses

[ShopCustomerShippingAddress!]!
🔒 Oauth2: Required access scope read.customers
+ POST dashboard

shopCustomers

[ShopCustomer!]!
🔒 Oauth2: Required access scope read.customers
+ POST dashboard

shopDescriptionJson

ShopDescriptionJson
🔒 Oauth2: Required access scope read.products
+ POST dashboard

shopDescriptionJsonTranslation

ShopDescriptionJsonTranslation
🔒 Oauth2: Required access scope read.products
+ POST dashboard

shopDescriptionJsonTranslations

[ShopDescriptionJsonTranslation!]!
🔒 Oauth2: Required access scope read.products
+ POST dashboard

shopDescriptionJsons

[ShopDescriptionJson!]!
🔒 Oauth2: Required access scope read.products
+ POST dashboard

shopDiscountCode

ShopDiscountCode
🔒 Oauth2: Required access scope read.promotions
+ POST dashboard

shopDiscountCodes

[ShopDiscountCode!]!
🔒 Oauth2: Required access scope read.promotions
+ POST dashboard

shopDistrict

ShopDistrict
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopDistricts

[ShopDistrict!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopEmailTemplate

ShopEmailTemplate
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopEmailTemplates

[ShopEmailTemplate!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopFilter

ShopFilter
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopFilters

[ShopFilter!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopForm

ShopForm
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopForms

[ShopForm!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopGateway

ShopGateway
🔒 Oauth2: Required access scope read.payments
+ POST dashboard

shopGateways

[ShopGateway!]!
🔒 Oauth2: Required access scope read.payments
+ POST dashboard

shopInventoryAdjustment

ShopInventoryAdjustment
🔒 Oauth2: Required access scope read.inventories
+ POST dashboard

shopInventoryAdjustmentLine

ShopInventoryAdjustmentLine
🔒 Oauth2: Required access scope read.inventories
+ POST dashboard

shopInventoryAdjustmentLines

[ShopInventoryAdjustmentLine!]!
🔒 Oauth2: Required access scope read.inventories
+ POST dashboard

shopInventoryAdjustments

[ShopInventoryAdjustment!]!
🔒 Oauth2: Required access scope read.inventories
+ POST dashboard

shopInventoryItem

ShopInventoryItem
🔒 Oauth2: Required access scope read.inventories
+ POST dashboard

shopInventoryItemLot

ShopInventoryItemLot
🔒 Oauth2: Required access scope read.inventories
+ POST dashboard

shopInventoryItemLots

[ShopInventoryItemLot!]!
🔒 Oauth2: Required access scope read.inventories
+ POST dashboard

shopInventoryItems

[ShopInventoryItem!]!
🔒 Oauth2: Required access scope read.inventories
+ POST dashboard

shopInventoryTransfer

ShopInventoryTransfer
🔒 Oauth2: Required access scope read.inventories
+ POST dashboard

shopInventoryTransferLine

ShopInventoryTransferLine
🔒 Oauth2: Required access scope read.inventories
+ POST dashboard

shopInventoryTransferLines

[ShopInventoryTransferLine!]!
🔒 Oauth2: Required access scope read.inventories
+ POST dashboard

shopInventoryTransfers

[ShopInventoryTransfer!]!
🔒 Oauth2: Required access scope read.inventories
+ POST dashboard

shopLicense

ShopLicense
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopLicenses

[ShopLicense!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopMedia

ShopMedia
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMediaArticle

ShopMediaArticle
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMediaArticles

[ShopMediaArticle!]!
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMediaBlog

ShopMediaBlog
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMediaBlogs

[ShopMediaBlog!]!
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMediaCategories

[ShopMediaCategory!]!
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMediaCategory

ShopMediaCategory
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMediaPage

ShopMediaPage
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMediaPages

[ShopMediaPage!]!
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMediaProduct

ShopMediaProduct
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMediaProducts

[ShopMediaProduct!]!
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMediaVariant

ShopMediaVariant
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMediaVariants

[ShopMediaVariant!]!
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMedias

[ShopMedia!]!
🔒 Oauth2: Required access scope read.media
+ POST dashboard

shopMember

ShopMember
🔒 Oauth2: Required access scope read.members
+ POST dashboard

shopMembers

[ShopMember!]!
🔒 Oauth2: Required access scope read.members
+ POST dashboard

shopMetaData

ShopMetaData
🔒 Oauth2: Required access scope read.categories
+ POST dashboard

shopMetaDatas

[ShopMetaData!]!
🔒 Oauth2: Required access scope read.categories
+ POST dashboard

shopOrder

ShopOrder
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrderAppliedPromotion

ShopOrderAppliedPromotion
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopOrderFulfillment

ShopOrderFulfillment
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrderFulfillmentCarrierShipment

ShopOrderFulfillmentCarrierShipment
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrderFulfillmentCarrierShipments

[ShopOrderFulfillmentCarrierShipment!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrderFulfillmentLine

ShopOrderFulfillmentLine
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrderFulfillmentLines

[ShopOrderFulfillmentLine!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrderFulfillments

[ShopOrderFulfillment!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrderInvoice

ShopOrderInvoice
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrderInvoices

[ShopOrderInvoice!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrderLine

ShopOrderLine
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrderLines

[ShopOrderLine!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrderTransaction

ShopOrderTransaction
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrderTransactionBase

ShopOrderTransactionBase
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrderTransactions

[ShopOrderTransactionBase!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopOrders

[ShopOrder!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopPage

ShopPage
🔒 Oauth2: Required access scope read.page
+ POST dashboard

shopPageTranslation

ShopPageTranslation
🔒 Oauth2: Required access scope read.page
+ POST dashboard

shopPageTranslations

[ShopPageTranslation!]!
🔒 Oauth2: Required access scope read.page
+ POST dashboard

shopPages

[ShopPage!]!
🔒 Oauth2: Required access scope read.page
+ POST dashboard

shopPaymentMethod

ShopPaymentMethod
🔒 Oauth2: Required access scope read.payments
+ POST dashboard

shopPaymentMethodGateway

ShopPaymentMethodGateway
🔒 Oauth2: Required access scope read.payments
+ POST dashboard

shopPaymentMethodGateways

[ShopPaymentMethodGateway!]!
🔒 Oauth2: Required access scope read.payments
+ POST dashboard

shopPaymentMethods

[ShopPaymentMethod!]!
🔒 Oauth2: Required access scope read.payments
+ POST dashboard

shopPosRegister

ShopPosRegister
🔒 Oauth2: Required access scope read.pos_shift
+ POST dashboard

shopPosRegisters

[ShopPosRegister!]!
🔒 Oauth2: Required access scope read.pos_shift
+ POST dashboard

shopPosShift

ShopPosShift
🔒 Oauth2: Required access scope read.pos_shift
+ POST dashboard

shopPosShifts

[ShopPosShift!]!
🔒 Oauth2: Required access scope read.pos_shift
+ POST dashboard

shopPreOrder

ShopPreOrder
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopPreOrderLine

ShopPreOrderLine
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopPreOrderLines

[ShopPreOrderLine!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopPreOrders

[ShopPreOrder!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopPrePurchaseOrder

ShopPrePurchaseOrder
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPrePurchaseOrderLine

ShopPrePurchaseOrderLine
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPrePurchaseOrderLines

[ShopPrePurchaseOrderLine!]!
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPrePurchaseOrders

[ShopPrePurchaseOrder!]!
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPrintTemplate

ShopPrintTemplate
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopPrintTemplates

[ShopPrintTemplate!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopPrivateMetadata

ShopPrivateMetadata
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopPrivateMetadatas

[ShopPrivateMetadata!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopPrivateNote

ShopPrivateNote
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopPrivateNotes

[ShopPrivateNote!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopProduct

ShopProduct
🔒 Oauth2: Required access scope read.products, read.orders
+ POST dashboard

shopProductCategories

[ShopProductCategory!]!
🔒 Oauth2: Required access scope read.categories
+ POST dashboard

shopProductCategory

ShopProductCategory
🔒 Oauth2: Required access scope read.categories
+ POST dashboard

shopProductCategoryChannel

ShopProductCategoryChannel
🔒 Oauth2: Required access scope read.categories
+ POST dashboard

shopProductCategoryChannels

[ShopProductCategoryChannel!]!
🔒 Oauth2: Required access scope read.categories
+ POST dashboard

shopProductCategoryTranslation

ShopProductCategoryTranslation
🔒 Oauth2: Required access scope read.categories
+ POST dashboard

shopProductCategoryTranslations

[ShopProductCategoryTranslation!]!
🔒 Oauth2: Required access scope read.categories
+ POST dashboard

shopProductItem

ShopProductItem
🔒 Oauth2: Required access scope read.products
+ POST dashboard

shopProductItems

[ShopProductItem!]!
🔒 Oauth2: Required access scope read.products
+ POST dashboard

shopProductTranslation

ShopProductTranslation
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopProductTranslations

[ShopProductTranslation!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopProducts

[ShopProduct!]!
🔒 Oauth2: Required access scope read.products, read.orders
+ POST dashboard

shopPromotion

ShopPromotion
🔒 Oauth2: Required access scope read.promotions
+ POST dashboard

shopPromotions

[ShopPromotion!]!
🔒 Oauth2: Required access scope read.promotions
+ POST dashboard

shopProvider

ShopProvider
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

shopProviders

[ShopProvider!]!
🔒 Oauth2: Required access scope read.integrations
+ POST dashboard

shopProvince

ShopProvince
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopProvinces

[ShopProvince!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopPurchaseOrder

ShopPurchaseOrder
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseOrderFulfillment

ShopPurchaseOrderFulfillment
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseOrderFulfillmentLine

ShopPurchaseOrderFulfillmentLine
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseOrderFulfillmentLines

[ShopPurchaseOrderFulfillmentLine!]!
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseOrderFulfillments

[ShopPurchaseOrderFulfillment!]!
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseOrderLine

ShopPurchaseOrderLine
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseOrderLines

[ShopPurchaseOrderLine!]!
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseOrderTransaction

ShopPurchaseOrderTransaction
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseOrderTransactions

[ShopPurchaseOrderTransaction!]!
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseOrders

[ShopPurchaseOrder!]!
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseReturnOrder

ShopPurchaseReturnOrder
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseReturnOrderFulfillment

ShopPurchaseReturnOrderFulfillment
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseReturnOrderFulfillmentLine

ShopPurchaseReturnOrderFulfillmentLine
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseReturnOrderFulfillmentLines

[ShopPurchaseReturnOrderFulfillmentLine!]!
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseReturnOrderFulfillments

[ShopPurchaseReturnOrderFulfillment!]!
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseReturnOrderLine

ShopPurchaseReturnOrderLine
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseReturnOrderLines

[ShopPurchaseReturnOrderLine!]!
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseReturnOrderTransaction

ShopPurchaseReturnOrderTransaction
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseReturnOrderTransactions

[ShopPurchaseReturnOrderTransaction!]!
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopPurchaseReturnOrders

[ShopPurchaseReturnOrder!]!
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopReportQuery

ReportQueryResult
🔐 Auth
+ POST dashboard

shopReportTemplate

ShopReportTemplate
🔒 Oauth2: Required access scope read.reports
+ POST dashboard

shopReportTemplates

[ShopReportTemplate!]!
🔒 Oauth2: Required access scope read.reports
+ POST dashboard

shopReturnOrder

ShopReturnOrder
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopReturnOrderFulfillment

ShopReturnOrderFulfillment
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopReturnOrderFulfillmentLine

ShopReturnOrderFulfillmentLine
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopReturnOrderFulfillmentLines

[ShopReturnOrderFulfillmentLine!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopReturnOrderFulfillments

[ShopReturnOrderFulfillment!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopReturnOrderLine

ShopReturnOrderLine
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopReturnOrderLines

[ShopReturnOrderLine!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopReturnOrderTransaction

ShopReturnOrderTransaction
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopReturnOrderTransactions

[ShopReturnOrderTransaction!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopReturnOrders

[ShopReturnOrder!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopReview

ShopReview
🔒 Oauth2: Required access scope read.customers
+ POST dashboard

shopReviews

[ShopReview!]!
🔒 Oauth2: Required access scope read.customers
+ POST dashboard

shopSaleChannel

ShopSaleChannel
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopSaleChannels

[ShopSaleChannel!]!
🔒 Oauth2: Required access scope read.channels
+ POST dashboard

shopScope

ShopScope
🔒 Oauth2: Required access scope read.scopes
+ POST dashboard

shopScopes

[ShopScope!]!
🔒 Oauth2: Required access scope read.scopes
+ POST dashboard

shopSetting

ShopSettings
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopSettings

ShopSettings
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopSetupStatus

ShopSetupStatus
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopSmartDiscountCodes

[ShopSmartDiscountCode!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopSmartPromotions

[ShopSmartPromotion!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopSource

ShopSource
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopSources

[ShopSource!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopSupplier

ShopSupplier
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopSuppliers

[ShopSupplier!]!
🔒 Oauth2: Required access scope read.purchasing
+ POST dashboard

shopTag

ShopTag
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopTags

[ShopTag!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopTask

ShopTask
🔒 Oauth2: Required access scope read.tasks
+ POST dashboard

shopTaskLog

ShopTaskLog
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopTaskLogs

[ShopTaskLog!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopTasks

[ShopTask!]!
🔒 Oauth2: Required access scope read.tasks
+ POST dashboard

shopTax

ShopTax
🔒 Oauth2: Required access scope read.prices
+ POST dashboard

shopTaxes

[ShopTax!]!
🔒 Oauth2: Required access scope read.prices
+ POST dashboard

shopToAmisBranch

ShopToAmisBranch
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisBranches

[ShopToAmisBranch!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisCarrier

ShopToAmisCarrier
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisCarriers

[ShopToAmisCarrier!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisChannel

ShopToAmisChannel
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisChannels

[ShopToAmisChannel!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisGateway

ShopToAmisGateway
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisGateways

[ShopToAmisGateway!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisPayload

ShopToAmisPayload
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisPayloads

[ShopToAmisPayload!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisPaymentMethod

ShopToAmisPaymentMethod
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisPaymentMethods

[ShopToAmisPaymentMethod!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisSaleChannel

ShopToAmisSaleChannel
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisSaleChannels

[ShopToAmisSaleChannel!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisSource

ShopToAmisSource
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisSources

[ShopToAmisSource!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisWarehouse

ShopToAmisWarehouse
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToAmisWarehouses

[ShopToAmisWarehouse!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceBranch

ShopToMeinvoiceBranch
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceBranches

[ShopToMeinvoiceBranch!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceCarrier

ShopToMeinvoiceCarrier
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceCarriers

[ShopToMeinvoiceCarrier!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceChannel

ShopToMeinvoiceChannel
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceChannels

[ShopToMeinvoiceChannel!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceGateway

ShopToMeinvoiceGateway
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceGateways

[ShopToMeinvoiceGateway!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoicePayload

ShopToMeinvoicePayload
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoicePayloads

[ShopToMeinvoicePayload!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoicePaymentMethod

ShopToMeinvoicePaymentMethod
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoicePaymentMethods

[ShopToMeinvoicePaymentMethod!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceSaleChannel

ShopToMeinvoiceSaleChannel
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceSaleChannels

[ShopToMeinvoiceSaleChannel!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceSource

ShopToMeinvoiceSource
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceSources

[ShopToMeinvoiceSource!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceWarehouse

ShopToMeinvoiceWarehouse
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToMeinvoiceWarehouses

[ShopToMeinvoiceWarehouse!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopToPayosPayload

ShopToPayosPayload
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopToPayosPayloads

[ShopToPayosPayload!]!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

shopUnit

ShopUnit
🔒 Oauth2: Required access scope read.prices
+ POST dashboard

shopUnits

[ShopUnit!]!
🔒 Oauth2: Required access scope read.prices
+ POST dashboard

shopVariant

ShopVariant
🔒 Oauth2: Required access scope read.products
+ POST dashboard

shopVariantTax

ShopVariantTax
🔒 Oauth2: Required access scope read.prices
+ POST dashboard

shopVariantTaxes

[ShopVariantTax!]!
🔒 Oauth2: Required access scope read.prices
+ POST dashboard

shopVariantTranslation

ShopVariantTranslation
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopVariantTranslations

[ShopVariantTranslation!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

shopVariantUnit

ShopVariantUnit
🔒 Oauth2: Required access scope read.prices
+ POST dashboard

shopVariantUnits

[ShopVariantUnit!]!
🔒 Oauth2: Required access scope read.prices
+ POST dashboard

shopVariants

[ShopVariant!]!
🔒 Oauth2: Required access scope read.products
+ POST dashboard

shopVendor

ShopVendor
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopVendors

[ShopVendor!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopWard

ShopWard
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopWards

[ShopWard!]!
🔒 Oauth2: Required access scope read.settings
+ POST dashboard

shopWarehouse

ShopWarehouse
🔒 Oauth2: Required access scope read.locations
+ POST dashboard

shopWarehouses

[ShopWarehouse!]!
🔒 Oauth2: Required access scope read.locations
+ POST dashboard

shopWebhookJob

ShopWebhookJob
🔒 Oauth2: Required access scope read.tasks
+ POST dashboard

shopWebhookJobs

[ShopWebhookJob!]!
🔒 Oauth2: Required access scope read.tasks
+ POST dashboard

shopWebhookLog

ShopWebhookLog
🔒 Oauth2: Required access scope read.tasks
+ POST dashboard

shopWebhookLogs

[ShopWebhookLog!]!
🔒 Oauth2: Required access scope read.tasks
+ POST dashboard

shops

[Shop!]!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

storefrontDomainDnsInstructions

StorefrontDomainDnsInstructions
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

taskDefinitions

[JSON]
🔐 Auth
+ POST dashboard

trialSyncQuota

JSON
🔐 Auth
+ POST dashboard

ward

Ward
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

wards

[Ward!]!
🔒 Oauth2: Required access scope read.shop

Create

+ POST front

shopLogin

ShopLoginPayload!
✅ Public
+ POST dashboard

createKovToShopBranch

CreateKovToShopBranchPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

createKovToShopChannel

CreateKovToShopChannelPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

createNhanhToShopChannel

CreateNhanhToShopChannelPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

createNhanhToShopLocation

CreateNhanhToShopLocationPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

createSapoToShopChannel

CreateSapoToShopChannelPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

createSapoToShopLocation

CreateSapoToShopLocationPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

createShopAccessToken

CreateShopAccessTokenPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopAffiliate

CreateShopAffiliatePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopAffiliateProduct

CreateShopAffiliateProductPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopAffiliateTransaction

CreateShopAffiliateTransactionPayload!
🔒 Oauth2: Required access scope write.payments
+ POST dashboard

createShopApp

CreateShopAppPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

createShopAppInstallation

CreateShopAppInstallationPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

createShopArticle

CreateShopArticlePayload!
🔒 Oauth2: Required access scope write.article
+ POST dashboard

createShopArticleTranslation

CreateShopArticleTranslationPayload!
🔒 Oauth2: Required access scope write.article
+ POST dashboard

createShopAttachment

CreateShopAttachmentPayload!
🔒 Oauth2: Required access scope write.fulfillment
+ POST dashboard

createShopAttribute

CreateShopAttributePayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopAttributeGroup

CreateShopAttributeGroupPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopBank

CreateShopBankPayload!
🔒 Oauth2: Required access scope write.payments
+ POST dashboard

createShopBlog

CreateShopBlogPayload!
🔒 Oauth2: Required access scope write.blog
+ POST dashboard

createShopBlogTranslation

CreateShopBlogTranslationPayload!
🔒 Oauth2: Required access scope write.blog
+ POST dashboard

createShopBranch

CreateShopBranchPayload!
🔒 Oauth2: Required access scope write.locations
+ POST dashboard

createShopBrand

CreateShopBrandPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopCarrier

CreateShopCarrierPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopChannel

CreateShopChannelPayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

createShopChannelCheckoutTranslation

CreateShopChannelCheckoutTranslationPayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

createShopChannelCurrency

CreateShopChannelCurrencyPayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

createShopChannelDomain

CreateShopChannelDomainPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopChannelLanguage

CreateShopChannelLanguagePayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

createShopChannelLinkListLinkTranslation

CreateShopChannelLinkListLinkTranslationPayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

createShopChannelLinkListTranslation

CreateShopChannelLinkListTranslationPayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

createShopChannelProvider

CreateShopChannelProviderPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

createShopChannelTemplate

CreateShopChannelTemplatePayload!
🔒 Oauth2: Required access scope write.theme
+ POST dashboard

createShopChannelTemplateAsset

CreateShopChannelTemplateAssetPayload!
🔒 Oauth2: Required access scope write.theme
+ POST dashboard

createShopChannelThemeTemplate

CreateShopChannelThemeTemplatePayload!
🔒 Oauth2: Required access scope write.theme
+ POST dashboard

createShopCountry

CreateShopCountryPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopCurrency

CreateShopCurrencyPayload!
🔒 Oauth2: Required access scope write.prices
+ POST dashboard

createShopCustomer

CreateShopCustomerPayload!
🔒 Oauth2: Required access scope write.customers
+ POST dashboard

createShopCustomerBillingAddress

CreateShopCustomerBillingAddressPayload!
🔒 Oauth2: Required access scope write.customers
+ POST dashboard

createShopCustomerGroup

CreateShopCustomerGroupPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

createShopCustomerShippingAddress

CreateShopCustomerShippingAddressPayload!
🔒 Oauth2: Required access scope write.customers
+ POST dashboard

createShopDescriptionJson

CreateShopDescriptionJsonPayload!
🔒 Oauth2: Required access scope write.products
+ POST dashboard

createShopDescriptionJsonTranslation

CreateShopDescriptionJsonTranslationPayload!
🔒 Oauth2: Required access scope write.products
+ POST dashboard

createShopDiscountCode

CreateShopDiscountCodePayload!
🔒 Oauth2: Required access scope write.promotions
+ POST dashboard

createShopDistrict

CreateShopDistrictPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopEmailTemplate

CreateShopEmailTemplatePayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopFilter

CreateShopFilterPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopGateway

CreateShopGatewayPayload!
🔒 Oauth2: Required access scope write.payments
+ POST dashboard

createShopInventoryAdjustment

CreateShopInventoryAdjustmentPayload!
🔒 Oauth2: Required access scope write.inventories
+ POST dashboard

createShopInventoryAdjustmentLine

CreateShopInventoryAdjustmentLinePayload!
🔒 Oauth2: Required access scope write.inventories
+ POST dashboard

createShopInventoryTransfer

CreateShopInventoryTransferPayload!
🔒 Oauth2: Required access scope write.inventories
+ POST dashboard

createShopInventoryTransferLine

CreateShopInventoryTransferLinePayload!
🔒 Oauth2: Required access scope write.inventories
+ POST dashboard

createShopLicense

CreateShopLicensePayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopMedia

CreateShopMediaPayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

createShopMediaArticle

CreateShopMediaArticlePayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

createShopMediaBlog

CreateShopMediaBlogPayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

createShopMediaCategory

CreateShopMediaCategoryPayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

createShopMediaPage

CreateShopMediaPagePayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

createShopMediaProduct

CreateShopMediaProductPayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

createShopMediaVariant

CreateShopMediaVariantPayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

createShopMember

CreateShopMemberPayload!
🔒 Oauth2: Required access scope write.members
+ POST dashboard

createShopMetaData

CreateShopMetaDataPayload!
🔒 Oauth2: Required access scope write.categories
+ POST dashboard

createShopOrder

CreateShopOrderPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopOrderFulfillment

CreateShopOrderFulfillmentPayload!
🔒 Oauth2: Required access scope write.fulfillment
+ POST dashboard

createShopOrderInvoice

CreateShopOrderInvoicePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopOrderLine

CreateShopOrderLinePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopOrderTransaction

CreateShopOrderTransactionPayload!
🔒 Oauth2: Required access scope write.orders, write.payments
+ POST dashboard

createShopPage

CreateShopPagePayload!
🔒 Oauth2: Required access scope write.page
+ POST dashboard

createShopPageTranslation

CreateShopPageTranslationPayload!
🔒 Oauth2: Required access scope write.page
+ POST dashboard

createShopPaymentMethod

CreateShopPaymentMethodPayload!
🔒 Oauth2: Required access scope write.payments
+ POST dashboard

createShopPaymentMethodGateway

CreateShopPaymentMethodGatewayPayload!
🔒 Oauth2: Required access scope write.payments
+ POST dashboard

createShopPosRegister

CreateShopPosRegisterPayload!
🔒 Oauth2: Required access scope write.pos_shift
+ POST dashboard

createShopPreOrder

CreateShopPreOrderPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopPreOrderLine

CreateShopPreOrderLinePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopPrePurchaseOrder

CreateShopPrePurchaseOrderPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

createShopPrePurchaseOrderLine

CreateShopPrePurchaseOrderLinePayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

createShopPrintTemplate

CreateShopPrintTemplatePayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopPrivateMetadata

CreateShopPrivateMetadataPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopPrivateNote

CreateShopPrivateNotePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopProduct

CreateShopProductPayload!
🔒 Oauth2: Required access scope write.products
+ POST dashboard

createShopProductCategory

CreateShopProductCategoryPayload!
🔒 Oauth2: Required access scope write.categories
+ POST dashboard

createShopProductCategoryChannel

CreateShopProductCategoryChannelPayload!
🔒 Oauth2: Required access scope write.categories
+ POST dashboard

createShopProductCategoryTranslation

CreateShopProductCategoryTranslationPayload!
🔒 Oauth2: Required access scope write.categories
+ POST dashboard

createShopProductItem

CreateShopProductItemPayload!
🔒 Oauth2: Required access scope write.products
+ POST dashboard

createShopProductTranslation

CreateShopProductTranslationPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

createShopPromotion

CreateShopPromotionPayload!
🔒 Oauth2: Required access scope write.promotions
+ POST dashboard

createShopProvider

CreateShopProviderPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

createShopProvince

CreateShopProvincePayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopPurchaseOrder

CreateShopPurchaseOrderPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

createShopPurchaseOrderFulfillment

CreateShopPurchaseOrderFulfillmentPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

createShopPurchaseOrderFulfillmentLine

CreateShopPurchaseOrderFulfillmentLinePayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

createShopPurchaseOrderLine

CreateShopPurchaseOrderLinePayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

createShopPurchaseOrderTransaction

CreateShopPurchaseOrderTransactionPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

createShopPurchaseReturnOrder

CreateShopPurchaseReturnOrderPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

createShopPurchaseReturnOrderFulfillment

CreateShopPurchaseReturnOrderFulfillmentPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

createShopPurchaseReturnOrderFulfillmentLine

CreateShopPurchaseReturnOrderFulfillmentLinePayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

createShopPurchaseReturnOrderLine

CreateShopPurchaseReturnOrderLinePayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

createShopPurchaseReturnOrderTransaction

CreateShopPurchaseReturnOrderTransactionPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

createShopReportTemplate

CreateShopReportTemplatePayload!
🔒 Oauth2: Required access scope write.reports
+ POST dashboard

createShopReturnOrder

CreateShopReturnOrderPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopReturnOrderFulfillment

CreateShopReturnOrderFulfillmentPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopReturnOrderFulfillmentLine

CreateShopReturnOrderFulfillmentLinePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopReturnOrderLine

CreateShopReturnOrderLinePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopReturnOrderTransaction

CreateShopReturnOrderTransactionPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopReview

CreateShopReviewPayload!
🔒 Oauth2: Required access scope write.customers
+ POST dashboard

createShopSaleChannel

CreateShopSaleChannelPayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

createShopScope

CreateShopScopePayload!
🔒 Oauth2: Required access scope write.scopes
+ POST dashboard

createShopSettings

CreateShopSettingsPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopSource

CreateShopSourcePayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopSupplier

CreateShopSupplierPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

createShopTag

CreateShopTagPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

createShopTask

CreateShopTaskPayload!
🔒 Oauth2: Required access scope write.tasks
+ POST dashboard

createShopTax

CreateShopTaxPayload!
🔒 Oauth2: Required access scope write.prices
+ POST dashboard

createShopToAmisBranch

CreateShopToAmisBranchPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

createShopToAmisGateway

CreateShopToAmisGatewayPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

createShopToAmisPaymentMethod

CreateShopToAmisPaymentMethodPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

createShopToAmisSaleChannel

CreateShopToAmisSaleChannelPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

createShopToAmisSource

CreateShopToAmisSourcePayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

createShopToAmisWarehouse

CreateShopToAmisWarehousePayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

createShopUnit

CreateShopUnitPayload!
🔒 Oauth2: Required access scope write.prices
+ POST dashboard

createShopVariant

CreateShopVariantPayload!
🔒 Oauth2: Required access scope write.products
+ POST dashboard

createShopVariantTax

CreateShopVariantTaxPayload!
🔒 Oauth2: Required access scope write.prices
+ POST dashboard

createShopVariantTranslation

CreateShopVariantTranslationPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

createShopVariantUnit

CreateShopVariantUnitPayload!
🔒 Oauth2: Required access scope write.prices
+ POST dashboard

createShopVendor

CreateShopVendorPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopWard

CreateShopWardPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

createShopWarehouse

CreateShopWarehousePayload!
🔒 Oauth2: Required access scope write.locations
+ POST front

shopRequestEmailLoginCode

EmailLoginCodePayload!
✅ Public
+ POST dashboard

uploadMedia

UploadMediaPayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

uploadMediaByUrl

UploadMediaPayload!
🔒 Oauth2: Required access scope write.media

Update

+ POST dashboard

updateAmisACTOpenAccounts

UpdateAmisACTOpenAccountsPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisACTOpenAllOrganizationUnits

UpdateAmisACTOpenAllOrganizationUnitsPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisAccountObjects

UpdateAmisAccountObjectsPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisBankAccounts

UpdateAmisBankAccountsPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisCompanyInfo

UpdateAmisCompanyInfoPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisExpenseItems

UpdateAmisExpenseItemsPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisInventoryItems

UpdateAmisInventoryItemsPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisJobs

UpdateAmisJobsPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisLastSyncTimes

UpdateAmisLastSyncTimesPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisListInventoryBalance

UpdateAmisListInventoryBalancePayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisOptions

UpdateAmisOptionsPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisPaymentTerms

UpdateAmisPaymentTermsPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisProjectWorks

UpdateAmisProjectWorksPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisStocks

UpdateAmisStocksPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateAmisUnits

UpdateAmisUnitsPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateCountry

UpdateCountryPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateDistrict

UpdateDistrictPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateKovCustomer

UpdateKovCustomerPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateKovInvoice

UpdateKovInvoicePayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateKovProduct

UpdateKovProductPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateKovPurchase

UpdateKovPurchasePayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateKovReturn

UpdateKovReturnPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateKovSupplier

UpdateKovSupplierPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateKovToShopBranch

UpdateKovToShopBranchPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateKovToShopChannel

UpdateKovToShopChannelPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateKovTransfer

UpdateKovTransferPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateMeinvoiceTemplate

UpdateMeinvoiceTemplatePayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateMyDashboardUi

JSON!
🔐 Auth
+ POST dashboard

updateNhanhBusiness

UpdateNhanhBusinessPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateNhanhCustomer

UpdateNhanhCustomerPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateNhanhDepartment

UpdateNhanhDepartmentPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateNhanhDepot

UpdateNhanhDepotPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateNhanhOrder

UpdateNhanhOrderPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateNhanhOrderReturn

UpdateNhanhOrderReturnPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateNhanhProduct

UpdateNhanhProductPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateNhanhSupplier

UpdateNhanhSupplierPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateNhanhToShopChannel

UpdateNhanhToShopChannelPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateNhanhToShopLocation

UpdateNhanhToShopLocationPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateNhanhUser

UpdateNhanhUserPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateProvince

UpdateProvincePayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateSapoLocation

UpdateSapoLocationPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateSapoOrder

UpdateSapoOrderPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateSapoOrderReturn

UpdateSapoOrderReturnPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateSapoProduct

UpdateSapoProductPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateSapoReceiveInventory

UpdateSapoReceiveInventoryPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateSapoShop

UpdateSapoShopPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateSapoSource

UpdateSapoSourcePayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateSapoStockTransfer

UpdateSapoStockTransferPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateSapoSupplier

UpdateSapoSupplierPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateSapoSupplierReturn

UpdateSapoSupplierReturnPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateSapoToShopChannel

UpdateSapoToShopChannelPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateSapoToShopLocation

UpdateSapoToShopLocationPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateShop

UpdateShopPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopAccessToken

UpdateShopAccessTokenPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopAction

UpdateShopActionPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopActivity

UpdateShopActivityPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopAffiliate

UpdateShopAffiliatePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopAffiliateProduct

UpdateShopAffiliateProductPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopAffiliateTransaction

UpdateShopAffiliateTransactionPayload!
🔒 Oauth2: Required access scope write.payments
+ POST dashboard

updateShopApp

UpdateShopAppPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateShopAppInstallation

UpdateShopAppInstallationPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateShopArticle

UpdateShopArticlePayload!
🔒 Oauth2: Required access scope write.article
+ POST dashboard

updateShopArticleTranslation

UpdateShopArticleTranslationPayload!
🔒 Oauth2: Required access scope write.article
+ POST dashboard

updateShopAttachment

UpdateShopAttachmentPayload!
🔒 Oauth2: Required access scope write.fulfillment
+ POST dashboard

updateShopAttribute

UpdateShopAttributePayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopAttributeGroup

UpdateShopAttributeGroupPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopBank

UpdateShopBankPayload!
🔒 Oauth2: Required access scope write.payments
+ POST dashboard

updateShopBlog

UpdateShopBlogPayload!
🔒 Oauth2: Required access scope write.blog
+ POST dashboard

updateShopBlogTranslation

UpdateShopBlogTranslationPayload!
🔒 Oauth2: Required access scope write.blog
+ POST dashboard

updateShopBranch

UpdateShopBranchPayload!
🔒 Oauth2: Required access scope write.locations
+ POST dashboard

updateShopBrand

UpdateShopBrandPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopCarrier

UpdateShopCarrierPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopChannel

UpdateShopChannelPayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

updateShopChannelCheckoutTranslation

UpdateShopChannelCheckoutTranslationPayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

updateShopChannelCurrency

UpdateShopChannelCurrencyPayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

updateShopChannelDomain

UpdateShopChannelDomainPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopChannelLanguage

UpdateShopChannelLanguagePayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

updateShopChannelLinkListLinkTranslation

UpdateShopChannelLinkListLinkTranslationPayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

updateShopChannelLinkListTranslation

UpdateShopChannelLinkListTranslationPayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

updateShopChannelProvider

UpdateShopChannelProviderPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateShopChannelTemplate

UpdateShopChannelTemplatePayload!
🔒 Oauth2: Required access scope write.theme
+ POST dashboard

updateShopChannelTemplateAsset

UpdateShopChannelTemplateAssetPayload!
🔒 Oauth2: Required access scope write.theme
+ POST dashboard

updateShopChannelThemeTemplate

UpdateShopChannelThemeTemplatePayload!
🔒 Oauth2: Required access scope write.theme
+ POST dashboard

updateShopCheckoutOrder

UpdateShopCheckoutOrderPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopCheckoutOrderLine

UpdateShopCheckoutOrderLinePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopCompany

UpdateShopCompanyPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopCountry

UpdateShopCountryPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopCurrency

UpdateShopCurrencyPayload!
🔒 Oauth2: Required access scope write.prices
+ POST dashboard

updateShopCustomer

UpdateShopCustomerPayload!
🔒 Oauth2: Required access scope write.customers
+ POST dashboard

updateShopCustomerBillingAddress

UpdateShopCustomerBillingAddressPayload!
🔒 Oauth2: Required access scope write.customers
+ POST dashboard

updateShopCustomerGroup

UpdateShopCustomerGroupPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopCustomerShippingAddress

UpdateShopCustomerShippingAddressPayload!
🔒 Oauth2: Required access scope write.customers
+ POST dashboard

updateShopDescriptionJson

UpdateShopDescriptionJsonPayload!
🔒 Oauth2: Required access scope write.products
+ POST dashboard

updateShopDescriptionJsonTranslation

UpdateShopDescriptionJsonTranslationPayload!
🔒 Oauth2: Required access scope write.products
+ POST dashboard

updateShopDiscountCode

UpdateShopDiscountCodePayload!
🔒 Oauth2: Required access scope write.promotions
+ POST dashboard

updateShopDistrict

UpdateShopDistrictPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopEmailTemplate

UpdateShopEmailTemplatePayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopFilter

UpdateShopFilterPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopGateway

UpdateShopGatewayPayload!
🔒 Oauth2: Required access scope write.payments
+ POST dashboard

updateShopInventoryAdjustment

UpdateShopInventoryAdjustmentPayload!
🔒 Oauth2: Required access scope write.inventories
+ POST dashboard

updateShopInventoryAdjustmentLine

UpdateShopInventoryAdjustmentLinePayload!
🔒 Oauth2: Required access scope write.inventories
+ POST dashboard

updateShopInventoryItem

UpdateShopInventoryItemPayload!
🔒 Oauth2: Required access scope write.inventories
+ POST dashboard

updateShopInventoryItemLot

UpdateShopInventoryItemLotPayload!
🔒 Oauth2: Required access scope write.inventories
+ POST dashboard

updateShopInventoryTransfer

UpdateShopInventoryTransferPayload!
🔒 Oauth2: Required access scope write.inventories
+ POST dashboard

updateShopInventoryTransferLine

UpdateShopInventoryTransferLinePayload!
🔒 Oauth2: Required access scope write.inventories
+ POST dashboard

updateShopLicense

UpdateShopLicensePayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopMedia

UpdateShopMediaPayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

updateShopMediaArticle

UpdateShopMediaArticlePayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

updateShopMediaBlog

UpdateShopMediaBlogPayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

updateShopMediaCategory

UpdateShopMediaCategoryPayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

updateShopMediaPage

UpdateShopMediaPagePayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

updateShopMediaProduct

UpdateShopMediaProductPayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

updateShopMediaVariant

UpdateShopMediaVariantPayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

updateShopMember

UpdateShopMemberPayload!
🔒 Oauth2: Required access scope write.members
+ POST dashboard

updateShopMetaData

UpdateShopMetaDataPayload!
🔒 Oauth2: Required access scope write.categories
+ POST dashboard

updateShopOrder

UpdateShopOrderPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopOrderAppliedPromotion

UpdateShopOrderAppliedPromotionPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopOrderFulfillment

UpdateShopOrderFulfillmentPayload!
🔒 Oauth2: Required access scope write.fulfillment
+ POST dashboard

updateShopOrderFulfillmentLine

UpdateShopOrderFulfillmentLinePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopOrderInvoice

UpdateShopOrderInvoicePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopOrderLine

UpdateShopOrderLinePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopOrderTransaction

UpdateShopOrderTransactionPayload!
🔒 Oauth2: Required access scope write.orders, write.payments
+ POST dashboard

updateShopOrderTransactionBase

UpdateShopOrderTransactionBasePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopPage

UpdateShopPagePayload!
🔒 Oauth2: Required access scope write.page
+ POST dashboard

updateShopPageTranslation

UpdateShopPageTranslationPayload!
🔒 Oauth2: Required access scope write.page
+ POST dashboard

updateShopPaymentMethod

UpdateShopPaymentMethodPayload!
🔒 Oauth2: Required access scope write.payments
+ POST dashboard

updateShopPaymentMethodGateway

UpdateShopPaymentMethodGatewayPayload!
🔒 Oauth2: Required access scope write.payments
+ POST dashboard

updateShopPosRegister

UpdateShopPosRegisterPayload!
🔒 Oauth2: Required access scope write.pos_shift
+ POST dashboard

updateShopPosShift

UpdateShopPosShiftPayload!
🔒 Oauth2: Required access scope write.pos_shift
+ POST dashboard

updateShopPreOrder

UpdateShopPreOrderPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopPreOrderLine

UpdateShopPreOrderLinePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopPrePurchaseOrder

UpdateShopPrePurchaseOrderPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

updateShopPrePurchaseOrderLine

UpdateShopPrePurchaseOrderLinePayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

updateShopPrintTemplate

UpdateShopPrintTemplatePayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopPrivateMetadata

UpdateShopPrivateMetadataPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopPrivateNote

UpdateShopPrivateNotePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopProduct

UpdateShopProductPayload!
🔒 Oauth2: Required access scope write.products
+ POST dashboard

updateShopProductCategory

UpdateShopProductCategoryPayload!
🔒 Oauth2: Required access scope write.categories
+ POST dashboard

updateShopProductCategoryChannel

UpdateShopProductCategoryChannelPayload!
🔒 Oauth2: Required access scope write.categories
+ POST dashboard

updateShopProductCategoryTranslation

UpdateShopProductCategoryTranslationPayload!
🔒 Oauth2: Required access scope write.categories
+ POST dashboard

updateShopProductItem

UpdateShopProductItemPayload!
🔒 Oauth2: Required access scope write.products
+ POST dashboard

updateShopProductTranslation

UpdateShopProductTranslationPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopPromotion

UpdateShopPromotionPayload!
🔒 Oauth2: Required access scope write.promotions
+ POST dashboard

updateShopProvider

UpdateShopProviderPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

updateShopProvince

UpdateShopProvincePayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopPurchaseOrder

UpdateShopPurchaseOrderPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

updateShopPurchaseOrderFulfillment

UpdateShopPurchaseOrderFulfillmentPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

updateShopPurchaseOrderFulfillmentLine

UpdateShopPurchaseOrderFulfillmentLinePayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

updateShopPurchaseOrderLine

UpdateShopPurchaseOrderLinePayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

updateShopPurchaseOrderTransaction

UpdateShopPurchaseOrderTransactionPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

updateShopPurchaseReturnOrder

UpdateShopPurchaseReturnOrderPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

updateShopPurchaseReturnOrderFulfillment

UpdateShopPurchaseReturnOrderFulfillmentPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

updateShopPurchaseReturnOrderFulfillmentLine

UpdateShopPurchaseReturnOrderFulfillmentLinePayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

updateShopPurchaseReturnOrderLine

UpdateShopPurchaseReturnOrderLinePayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

updateShopPurchaseReturnOrderTransaction

UpdateShopPurchaseReturnOrderTransactionPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

updateShopReportTemplate

UpdateShopReportTemplatePayload!
🔒 Oauth2: Required access scope write.reports
+ POST dashboard

updateShopReturnOrder

UpdateShopReturnOrderPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopReturnOrderFulfillment

UpdateShopReturnOrderFulfillmentPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopReturnOrderFulfillmentLine

UpdateShopReturnOrderFulfillmentLinePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopReturnOrderLine

UpdateShopReturnOrderLinePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopReturnOrderTransaction

UpdateShopReturnOrderTransactionPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopReview

UpdateShopReviewPayload!
🔒 Oauth2: Required access scope write.customers
+ POST dashboard

updateShopSaleChannel

UpdateShopSaleChannelPayload!
🔒 Oauth2: Required access scope write.channels
+ POST dashboard

updateShopScope

UpdateShopScopePayload!
🔒 Oauth2: Required access scope write.scopes
+ POST dashboard

updateShopSettings

UpdateShopSettingsPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopSource

UpdateShopSourcePayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopSupplier

UpdateShopSupplierPayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

updateShopTag

UpdateShopTagPayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

updateShopTask

UpdateShopTaskPayload!
🔒 Oauth2: Required access scope write.tasks
+ POST dashboard

updateShopTaskLog

UpdateShopTaskLogPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopTax

UpdateShopTaxPayload!
🔒 Oauth2: Required access scope write.prices
+ POST dashboard

updateShopToAmisBranch

UpdateShopToAmisBranchPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToAmisCarrier

UpdateShopToAmisCarrierPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToAmisChannel

UpdateShopToAmisChannelPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToAmisGateway

UpdateShopToAmisGatewayPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToAmisPayload

UpdateShopToAmisPayloadPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToAmisPaymentMethod

UpdateShopToAmisPaymentMethodPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToAmisSaleChannel

UpdateShopToAmisSaleChannelPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToAmisSource

UpdateShopToAmisSourcePayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToAmisWarehouse

UpdateShopToAmisWarehousePayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToMeinvoiceBranch

UpdateShopToMeinvoiceBranchPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToMeinvoiceCarrier

UpdateShopToMeinvoiceCarrierPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToMeinvoiceChannel

UpdateShopToMeinvoiceChannelPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToMeinvoiceGateway

UpdateShopToMeinvoiceGatewayPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToMeinvoicePayload

UpdateShopToMeinvoicePayloadPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToMeinvoicePaymentMethod

UpdateShopToMeinvoicePaymentMethodPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToMeinvoiceSaleChannel

UpdateShopToMeinvoiceSaleChannelPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToMeinvoiceSource

UpdateShopToMeinvoiceSourcePayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopToMeinvoiceWarehouse

UpdateShopToMeinvoiceWarehousePayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopUnit

UpdateShopUnitPayload!
🔒 Oauth2: Required access scope write.prices
+ POST dashboard

updateShopVariant

UpdateShopVariantPayload!
🔒 Oauth2: Required access scope write.products
+ POST dashboard

updateShopVariantTax

UpdateShopVariantTaxPayload!
🔒 Oauth2: Required access scope write.prices
+ POST dashboard

updateShopVariantTranslation

UpdateShopVariantTranslationPayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

updateShopVariantUnit

UpdateShopVariantUnitPayload!
🔒 Oauth2: Required access scope write.prices
+ POST dashboard

updateShopVendor

UpdateShopVendorPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopWard

UpdateShopWardPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

updateShopWarehouse

UpdateShopWarehousePayload!
🔒 Oauth2: Required access scope write.locations
+ POST dashboard

updateWard

UpdateWardPayload!
🔒 Oauth2: Required access scope write.shop

Delete

+ POST dashboard

deleteAmisACTOpenAccounts

DeleteAmisACTOpenAccountsPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisACTOpenAllOrganizationUnits

DeleteAmisACTOpenAllOrganizationUnitsPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisAccountObjects

DeleteAmisAccountObjectsPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisBankAccounts

DeleteAmisBankAccountsPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisCompanyInfo

DeleteAmisCompanyInfoPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisExpenseItems

DeleteAmisExpenseItemsPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisInventoryItems

DeleteAmisInventoryItemsPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisJobs

DeleteAmisJobsPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisLastSyncTimes

DeleteAmisLastSyncTimesPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisListInventoryBalance

DeleteAmisListInventoryBalancePayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisOptions

DeleteAmisOptionsPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisPaymentTerms

DeleteAmisPaymentTermsPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisProjectWorks

DeleteAmisProjectWorksPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisStocks

DeleteAmisStocksPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteAmisUnits

DeleteAmisUnitsPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteMedia

DeleteMediaPayload!
🔒 Oauth2: Required access scope write.media
+ POST dashboard

deleteShopAccessToken

DeleteShopAccessTokenPayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopAction

DeleteShopActionPayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopAffiliate

DeleteShopAffiliatePayload!
🔒 Oauth2: Required access scope delete.orders
+ POST dashboard

deleteShopAffiliateProduct

DeleteShopAffiliateProductPayload!
🔒 Oauth2: Required access scope delete.orders
+ POST dashboard

deleteShopApp

DeleteShopAppPayload!
🔒 Oauth2: Required access scope delete.integrations
+ POST dashboard

deleteShopAppInstallation

DeleteShopAppInstallationPayload!
🔒 Oauth2: Required access scope delete.integrations
+ POST dashboard

deleteShopArticle

DeleteShopArticlePayload!
🔒 Oauth2: Required access scope delete.article
+ POST dashboard

deleteShopArticleTranslation

DeleteShopArticleTranslationPayload!
🔒 Oauth2: Required access scope delete.article
+ POST dashboard

deleteShopAttachment

DeleteShopAttachmentPayload!
🔒 Oauth2: Required access scope delete.fulfillment
+ POST dashboard

deleteShopAttribute

DeleteShopAttributePayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopAttributeGroup

DeleteShopAttributeGroupPayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopBank

DeleteShopBankPayload!
🔒 Oauth2: Required access scope delete.payments
+ POST dashboard

deleteShopBlog

DeleteShopBlogPayload!
🔒 Oauth2: Required access scope delete.blog
+ POST dashboard

deleteShopBlogTranslation

DeleteShopBlogTranslationPayload!
🔒 Oauth2: Required access scope delete.blog
+ POST dashboard

deleteShopBranch

DeleteShopBranchPayload!
🔒 Oauth2: Required access scope delete.locations
+ POST dashboard

deleteShopBrand

DeleteShopBrandPayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopCarrier

DeleteShopCarrierPayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopChannel

DeleteShopChannelPayload!
🔒 Oauth2: Required access scope delete.channels
+ POST dashboard

deleteShopChannelCheckoutTranslation

DeleteShopChannelCheckoutTranslationPayload!
🔒 Oauth2: Required access scope delete.channels
+ POST dashboard

deleteShopChannelCurrency

DeleteShopChannelCurrencyPayload!
🔒 Oauth2: Required access scope delete.channels
+ POST dashboard

deleteShopChannelDomain

DeleteShopChannelDomainPayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopChannelLanguage

DeleteShopChannelLanguagePayload!
🔒 Oauth2: Required access scope delete.channels
+ POST dashboard

deleteShopChannelLinkListLinkTranslation

DeleteShopChannelLinkListLinkTranslationPayload!
🔒 Oauth2: Required access scope delete.channels
+ POST dashboard

deleteShopChannelLinkListTranslation

DeleteShopChannelLinkListTranslationPayload!
🔒 Oauth2: Required access scope delete.channels
+ POST dashboard

deleteShopChannelProvider

DeleteShopChannelProviderPayload!
🔒 Oauth2: Required access scope delete.integrations
+ POST dashboard

deleteShopChannelTemplate

DeleteShopChannelTemplatePayload!
🔒 Oauth2: Required access scope delete.theme
+ POST dashboard

deleteShopChannelTemplateAsset

DeleteShopChannelTemplateAssetPayload!
🔒 Oauth2: Required access scope delete.theme
+ POST dashboard

deleteShopChannelThemeTemplate

DeleteShopChannelThemeTemplatePayload!
🔒 Oauth2: Required access scope delete.theme
+ POST dashboard

deleteShopCountry

DeleteShopCountryPayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopCurrency

DeleteShopCurrencyPayload!
🔒 Oauth2: Required access scope delete.prices
+ POST dashboard

deleteShopCustomer

DeleteShopCustomerPayload!
🔒 Oauth2: Required access scope delete.customers
+ POST dashboard

deleteShopCustomerBillingAddress

DeleteShopCustomerBillingAddressPayload!
🔒 Oauth2: Required access scope delete.customers
+ POST dashboard

deleteShopCustomerGroup

DeleteShopCustomerGroupPayload!
🔒 Oauth2: Required access scope delete.shop
+ POST dashboard

deleteShopCustomerShippingAddress

DeleteShopCustomerShippingAddressPayload!
🔒 Oauth2: Required access scope delete.customers
+ POST dashboard

deleteShopDescriptionJson

DeleteShopDescriptionJsonPayload!
🔒 Oauth2: Required access scope delete.products
+ POST dashboard

deleteShopDescriptionJsonTranslation

DeleteShopDescriptionJsonTranslationPayload!
🔒 Oauth2: Required access scope delete.products
+ POST dashboard

deleteShopDiscountCode

DeleteShopDiscountCodePayload!
🔒 Oauth2: Required access scope delete.promotions
+ POST dashboard

deleteShopDistrict

DeleteShopDistrictPayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopEmailTemplate

DeleteShopEmailTemplatePayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopFilter

DeleteShopFilterPayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopGateway

DeleteShopGatewayPayload!
🔒 Oauth2: Required access scope delete.payments
+ POST dashboard

deleteShopInventoryAdjustment

DeleteShopInventoryAdjustmentPayload!
🔒 Oauth2: Required access scope delete.inventories
+ POST dashboard

deleteShopInventoryAdjustmentLine

DeleteShopInventoryAdjustmentLinePayload!
🔒 Oauth2: Required access scope delete.inventories
+ POST dashboard

deleteShopInventoryTransfer

DeleteShopInventoryTransferPayload!
🔒 Oauth2: Required access scope delete.inventories
+ POST dashboard

deleteShopInventoryTransferLine

DeleteShopInventoryTransferLinePayload!
🔒 Oauth2: Required access scope delete.inventories
+ POST dashboard

deleteShopLicense

DeleteShopLicensePayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopMedia

DeleteShopMediaPayload!
🔒 Oauth2: Required access scope delete.media
+ POST dashboard

deleteShopMediaArticle

DeleteShopMediaArticlePayload!
🔒 Oauth2: Required access scope delete.media
+ POST dashboard

deleteShopMediaBlog

DeleteShopMediaBlogPayload!
🔒 Oauth2: Required access scope delete.media
+ POST dashboard

deleteShopMediaCategory

DeleteShopMediaCategoryPayload!
🔒 Oauth2: Required access scope delete.media
+ POST dashboard

deleteShopMediaPage

DeleteShopMediaPagePayload!
🔒 Oauth2: Required access scope delete.media
+ POST dashboard

deleteShopMediaProduct

DeleteShopMediaProductPayload!
🔒 Oauth2: Required access scope delete.media
+ POST dashboard

deleteShopMediaVariant

DeleteShopMediaVariantPayload!
🔒 Oauth2: Required access scope delete.media
+ POST dashboard

deleteShopMetaData

DeleteShopMetaDataPayload!
🔒 Oauth2: Required access scope delete.categories
+ POST dashboard

deleteShopOrder

DeleteShopOrderPayload!
🔒 Oauth2: Required access scope delete.orders
+ POST dashboard

deleteShopOrderFulfillment

DeleteShopOrderFulfillmentPayload!
🔒 Oauth2: Required access scope write.fulfillment
+ POST dashboard

deleteShopPage

DeleteShopPagePayload!
🔒 Oauth2: Required access scope delete.page
+ POST dashboard

deleteShopPageTranslation

DeleteShopPageTranslationPayload!
🔒 Oauth2: Required access scope delete.page
+ POST dashboard

deleteShopPaymentMethod

DeleteShopPaymentMethodPayload!
🔒 Oauth2: Required access scope delete.payments
+ POST dashboard

deleteShopPaymentMethodGateway

DeleteShopPaymentMethodGatewayPayload!
🔒 Oauth2: Required access scope delete.payments
+ POST dashboard

deleteShopPreOrder

DeleteShopPreOrderPayload!
🔒 Oauth2: Required access scope delete.orders
+ POST dashboard

deleteShopPreOrderLine

DeleteShopPreOrderLinePayload!
🔒 Oauth2: Required access scope delete.orders
+ POST dashboard

deleteShopPrePurchaseOrder

DeleteShopPrePurchaseOrderPayload!
🔒 Oauth2: Required access scope delete.purchasing
+ POST dashboard

deleteShopPrePurchaseOrderLine

DeleteShopPrePurchaseOrderLinePayload!
🔒 Oauth2: Required access scope delete.purchasing
+ POST dashboard

deleteShopPrintTemplate

DeleteShopPrintTemplatePayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopPrivateMetadata

DeleteShopPrivateMetadataPayload!
🔒 Oauth2: Required access scope delete.orders
+ POST dashboard

deleteShopProduct

DeleteShopProductPayload!
🔒 Oauth2: Required access scope delete.products
+ POST dashboard

deleteShopProductCategory

DeleteShopProductCategoryPayload!
🔒 Oauth2: Required access scope delete.categories
+ POST dashboard

deleteShopProductCategoryChannel

DeleteShopProductCategoryChannelPayload!
🔒 Oauth2: Required access scope delete.categories
+ POST dashboard

deleteShopProductItem

DeleteShopProductItemPayload!
🔒 Oauth2: Required access scope delete.products
+ POST dashboard

deleteShopPromotion

DeleteShopPromotionPayload!
🔒 Oauth2: Required access scope delete.promotions
+ POST dashboard

deleteShopProvider

DeleteShopProviderPayload!
🔒 Oauth2: Required access scope delete.integrations
+ POST dashboard

deleteShopProvince

DeleteShopProvincePayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopPurchaseOrder

DeleteShopPurchaseOrderPayload!
🔒 Oauth2: Required access scope delete.purchasing
+ POST dashboard

deleteShopPurchaseOrderFulfillment

DeleteShopPurchaseOrderFulfillmentPayload!
🔒 Oauth2: Required access scope delete.purchasing
+ POST dashboard

deleteShopPurchaseOrderFulfillmentLine

DeleteShopPurchaseOrderFulfillmentLinePayload!
🔒 Oauth2: Required access scope delete.purchasing
+ POST dashboard

deleteShopPurchaseOrderLine

DeleteShopPurchaseOrderLinePayload!
🔒 Oauth2: Required access scope delete.purchasing
+ POST dashboard

deleteShopPurchaseReturnOrder

DeleteShopPurchaseReturnOrderPayload!
🔒 Oauth2: Required access scope delete.purchasing
+ POST dashboard

deleteShopPurchaseReturnOrderFulfillment

DeleteShopPurchaseReturnOrderFulfillmentPayload!
🔒 Oauth2: Required access scope delete.purchasing
+ POST dashboard

deleteShopPurchaseReturnOrderFulfillmentLine

DeleteShopPurchaseReturnOrderFulfillmentLinePayload!
🔒 Oauth2: Required access scope delete.purchasing
+ POST dashboard

deleteShopPurchaseReturnOrderLine

DeleteShopPurchaseReturnOrderLinePayload!
🔒 Oauth2: Required access scope delete.purchasing
+ POST dashboard

deleteShopReportTemplate

DeleteShopReportTemplatePayload!
🔒 Oauth2: Required access scope delete.reports
+ POST dashboard

deleteShopReturnOrder

DeleteShopReturnOrderPayload!
🔒 Oauth2: Required access scope delete.orders
+ POST dashboard

deleteShopReturnOrderLine

DeleteShopReturnOrderLinePayload!
🔒 Oauth2: Required access scope delete.orders
+ POST dashboard

deleteShopReview

DeleteShopReviewPayload!
🔒 Oauth2: Required access scope delete.customers
+ POST dashboard

deleteShopSaleChannel

DeleteShopSaleChannelPayload!
🔒 Oauth2: Required access scope delete.channels
+ POST dashboard

deleteShopScope

DeleteShopScopePayload!
🔒 Oauth2: Required access scope delete.scopes
+ POST dashboard

deleteShopSource

DeleteShopSourcePayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopSupplier

DeleteShopSupplierPayload!
🔒 Oauth2: Required access scope delete.purchasing
+ POST dashboard

deleteShopTag

DeleteShopTagPayload!
🔒 Oauth2: Required access scope delete.orders
+ POST dashboard

deleteShopTax

DeleteShopTaxPayload!
🔒 Oauth2: Required access scope delete.prices
+ POST dashboard

deleteShopUnit

DeleteShopUnitPayload!
🔒 Oauth2: Required access scope delete.prices
+ POST dashboard

deleteShopVariant

DeleteShopVariantPayload!
🔒 Oauth2: Required access scope delete.products
+ POST dashboard

deleteShopVariantTax

DeleteShopVariantTaxPayload!
🔒 Oauth2: Required access scope delete.prices
+ POST dashboard

deleteShopVariantUnit

DeleteShopVariantUnitPayload!
🔒 Oauth2: Required access scope delete.prices
+ POST dashboard

deleteShopVendor

DeleteShopVendorPayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopWard

DeleteShopWardPayload!
🔒 Oauth2: Required access scope delete.settings
+ POST dashboard

deleteShopWarehouse

DeleteShopWarehousePayload!
🔒 Oauth2: Required access scope delete.locations

Other

+ POST front

shopRefreshToken

ShopLoginPayload!
✅ Public
+ POST dashboard

assignChannelProvider

AssignShopChannelProviderPayload!
🔒 Oauth2: Required access scope write.integrations
+ POST dashboard

attachmentCreate

AttachmentCreatePayload!
🔒 Oauth2: Required access scope write.orders
+ POST dashboard

enqueueShopChannelDomainTlsRenew

EnqueueShopChannelDomainVerifyPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

enqueueShopChannelDomainVerify

EnqueueShopChannelDomainVerifyPayload!
🔒 Oauth2: Required access scope write.settings
+ POST dashboard

fulfillmentGhtkCreateOrder

JSON!
🔐 Auth
+ POST dashboard

fulfillmentViettelCreateOrder

JSON!
🔐 Auth
+ POST dashboard

fulfillmentViettelLabelPrint

JSON!
🔐 Auth
+ POST dashboard

previewCustomerAmisPayload

JSON!
🔒 Oauth2: Required access scope read.customers
+ POST dashboard

previewOrderSyncPayload

JSON!
🔒 Oauth2: Required access scope read.orders
+ POST dashboard

previewShopSyncPayload

JSON!
🔒 Oauth2: Required access scope read.shop
+ POST dashboard

previewVariantAmisPayload

JSON!
🔒 Oauth2: Required access scope read.products
+ POST dashboard

requestShopOwnershipTransfer

ShopOwnershipTransferResult!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

shopPopulate

ShopPopulatePayload!
🔒 Oauth2: Required access scope write.shop
+ POST dashboard

shopResyncPurchaseOrderFromPrePurchase

ResyncShopPurchaseOrderFromPrePurchasePayload!
🔒 Oauth2: Required access scope write.purchasing
+ POST dashboard

shopVariantsExcelExportEnqueue

ShopVariantsExcelEnqueuePayload!
🔒 Oauth2: Required access scope write.products
+ POST dashboard

shopVariantsExcelImportEnqueue

ShopVariantsExcelEnqueuePayload!
🔒 Oauth2: Required access scope write.products
+ POST dashboard

switchAccessibleShop

SwitchAccessibleShopResult!
🔐 Auth
+ POST dashboard

unassignChannelProvider

AssignShopChannelProviderPayload!
🔒 Oauth2: Required access scope write.integrations

Exports