Medusa Admin
Manage Medusa commerce stores through the v2 Admin API.
Authentication
| Method | Kind | Status | Details |
|---|---|---|---|
| Secret API Token | api_key | available | — |
| JWT Token | api_key | available | — |
Call a tool
import { createClient } from "@open-connector/sdk";const oc = createClient({ baseUrl: "https://api.openconnector.dev", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({ slug: "MEDUSA_ADMIN_DELETE_CAMPAIGNS_ID", connectedAccountId: "conn_...", arguments: { /* match this tool's input schema */ },});import Composio from "@composio/client";const composio = new Composio({ baseURL: "https://api.openconnector.dev/composio", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("MEDUSA_ADMIN_DELETE_CAMPAIGNS_ID", { connected_account_id: "conn_...", arguments: { /* match this tool's input schema */ },});oc tools execute MEDUSA_ADMIN_DELETE_CAMPAIGNS_ID --data '{ }'Tool catalog
Available tools
384 callable operations
Delete a CampaignMEDUSA_ADMIN_DELETE_CAMPAIGNS_IDDelete a campaign by its ID. This doesn't delete promotions that belong to this campaign.Connection
Delete a campaign by its ID. This doesn't delete promotions that belong to this campaign.
Authentication
Connected account requiredTags
Remove a Claim Item from a ClaimMEDUSA_ADMIN_DELETE_CLAIMS_ID_CLAIM_ITEMS_ACTION_IDRemove an order item from a claim by the ID of the item's `WRITE_OFF_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove an order item from a claim by the ID of the item's `WRITE_OFF_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Remove an Inbound Item from ClaimMEDUSA_ADMIN_DELETE_CLAIMS_ID_INBOUND_ITEMS_ACTION_IDRemove an inbound (or return) item from a claim using the `ID` of the item's `RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove an inbound (or return) item from a claim using the `ID` of the item's `RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Remove Inbound Shipping Method from ClaimMEDUSA_ADMIN_DELETE_CLAIMS_ID_INBOUND_SHIPPING_METHOD_ACTION_IDRemove the shipping method for returning items in the claim using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove the shipping method for returning items in the claim using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Remove an Outbound Item from ClaimMEDUSA_ADMIN_DELETE_CLAIMS_ID_OUTBOUND_ITEMS_ACTION_IDRemove an outbound (or new) item from a claim using the `ID` of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove an outbound (or new) item from a claim using the `ID` of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Remove Outbound Shipping Method from ClaimMEDUSA_ADMIN_DELETE_CLAIMS_ID_OUTBOUND_SHIPPING_METHOD_ACTION_IDRemove the shipping method for delivering outbound items in the claim using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove the shipping method for delivering outbound items in the claim using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Cancel Claim RequestMEDUSA_ADMIN_DELETE_CLAIMS_ID_REQUESTCancel a requested claim.Connection
Cancel a requested claim.
Authentication
Connected account requiredTags
Delete a CollectionMEDUSA_ADMIN_DELETE_COLLECTIONS_IDDelete a product collection.Connection
Delete a product collection.
Authentication
Connected account requiredTags
Delete a Customer GroupMEDUSA_ADMIN_DELETE_CUSTOMER_GROUPS_IDDelete a customer group. Customers in the group aren't deleted.Connection
Delete a customer group. Customers in the group aren't deleted.
Authentication
Connected account requiredTags
Delete a CustomerMEDUSA_ADMIN_DELETE_CUSTOMERS_IDDelete a customer.Connection
Delete a customer.
Authentication
Connected account requiredTags
Remove an Address from CustomerMEDUSA_ADMIN_DELETE_CUSTOMERS_ID_ADDRESSES_ADDRESS_IDRemove a customer's address.Connection
Remove a customer's address.
Authentication
Connected account requiredTags
Delete a Draft OrderMEDUSA_ADMIN_DELETE_DRAFT_ORDERS_IDDelete a draft order.Connection
Delete a draft order.
Authentication
Connected account requiredTags
Cancel Edit on Draft OrderMEDUSA_ADMIN_DELETE_DRAFT_ORDERS_ID_EDITCancel an unconfirmed edit on a draft order.Connection
Cancel an unconfirmed edit on a draft order.
Authentication
Connected account requiredTags
Remove Item from Draft Order EditMEDUSA_ADMIN_DELETE_DRAFT_ORDERS_ID_EDIT_ITEMS_ACTION_IDRemove an order item from a draft order edit by the ID of the item's `ITEM_ADD` or `ITEM_UPDATE` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove an order item from a draft order edit by the ID of the item's `ITEM_ADD` or `ITEM_UPDATE` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Remove Promotions from Draft Order EditMEDUSA_ADMIN_DELETE_DRAFT_ORDERS_ID_EDIT_PROMOTIONSRemove specified promotions from a draft order edit.Connection
Remove specified promotions from a draft order edit.
Authentication
Connected account requiredTags
Remove New Shipping Method from Draft OrderMEDUSA_ADMIN_DELETE_DRAFT_ORDERS_ID_EDIT_SHIPPING_METHODS_ACTION_IDRemove a shipping method that was added to a draft order edit using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove a shipping method that was added to a draft order edit using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Remove Shipping Method from Draft Order EditMEDUSA_ADMIN_DELETE_DRAFT_ORDERS_ID_EDIT_SHIPPING_METHODS_METHOD_METHOD_IDRemove an existing shipping method from a draft order edit.Connection
Remove an existing shipping method from a draft order edit.
Authentication
Connected account requiredTags
Remove Inbound Item from ExchangeMEDUSA_ADMIN_DELETE_EXCHANGES_ID_INBOUND_ITEMS_ACTION_IDRemove an inbound (or return) item from an exchange using the `ID` of the item's `RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove an inbound (or return) item from an exchange using the `ID` of the item's `RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Remove Inbound Shipping Method from ExchangeMEDUSA_ADMIN_DELETE_EXCHANGES_ID_INBOUND_SHIPPING_METHOD_ACTION_IDRemove the shipping method for returning items in the exchange using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove the shipping method for returning items in the exchange using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Remove Outbound Item from ExchangeMEDUSA_ADMIN_DELETE_EXCHANGES_ID_OUTBOUND_ITEMS_ACTION_IDRemove an outbound (or new) item from an exchange using the `ID` of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove an outbound (or new) item from an exchange using the `ID` of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Remove Outbound Shipping Method from ExchangeMEDUSA_ADMIN_DELETE_EXCHANGES_ID_OUTBOUND_SHIPPING_METHOD_ACTION_IDRemove the shipping method for delivering outbound items in the exchange using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove the shipping method for delivering outbound items in the exchange using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Cancel Exchange RequestMEDUSA_ADMIN_DELETE_EXCHANGES_ID_REQUESTCancel a requested exchange.Connection
Cancel a requested exchange.
Authentication
Connected account requiredTags
Delete Fulfillment SetMEDUSA_ADMIN_DELETE_FULFILLMENT_SETS_IDDelete a fulfillment set.Connection
Delete a fulfillment set.
Authentication
Connected account requiredTags
Remove a Service Zone from Fulfillment SetMEDUSA_ADMIN_DELETE_FULFILLMENT_SETS_ID_SERVICE_ZONES_ZONE_IDRemove a service zone that belongs to a fulfillment set.Connection
Remove a service zone that belongs to a fulfillment set.
Authentication
Connected account requiredTags
Delete Inventory ItemMEDUSA_ADMIN_DELETE_INVENTORY_ITEMS_IDDelete an inventory item.Connection
Delete an inventory item.
Authentication
Connected account requiredTags
Remove Inventory Level of Inventory ItemMEDUSA_ADMIN_DELETE_INVENTORY_ITEMS_ID_LOCATION_LEVELS_LOCATION_IDRemove the inventory level of an inventory item. If the inventory level has reserved quantity greater than `0`, an error is thrown.Connection
Remove the inventory level of an inventory item. If the inventory level has reserved quantity greater than `0`, an error is thrown.
Authentication
Connected account requiredTags
Delete InviteMEDUSA_ADMIN_DELETE_INVITES_IDDelete an invite.Connection
Delete an invite.
Authentication
Connected account requiredTags
Clear Configuration of LayoutMEDUSA_ADMIN_DELETE_LAYOUTS_ZONE_CONFIGURATIONClears all user layout configurations for a given zone. This action will remove any customizations made by the user and revert to the system defaults.Connection
Clears all user layout configurations for a given zone. This action will remove any customizations made by the user and revert to the system defaults.
Authentication
Connected account requiredTags
Cancel Order EditMEDUSA_ADMIN_DELETE_ORDER_EDITS_IDCancel a requested order edit.Connection
Cancel a requested order edit.
Authentication
Connected account requiredTags
Remove Item from Order EditMEDUSA_ADMIN_DELETE_ORDER_EDITS_ID_ITEMS_ACTION_IDRemove an added item in the order edit by the ID of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove an added item in the order edit by the ID of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Remove Shipping Method from Order EditMEDUSA_ADMIN_DELETE_ORDER_EDITS_ID_SHIPPING_METHOD_ACTION_IDRemove a shipping method in the order edit by the ID of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove a shipping method in the order edit by the ID of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Delete a Payment CollectionMEDUSA_ADMIN_DELETE_PAYMENT_COLLECTIONS_IDDelete a payment collection.Connection
Delete a payment collection.
Authentication
Connected account requiredTags
Delete a Price ListMEDUSA_ADMIN_DELETE_PRICE_LISTS_IDDelete a price list.Connection
Delete a price list.
Authentication
Connected account requiredTags
Delete a Price PreferenceMEDUSA_ADMIN_DELETE_PRICE_PREFERENCES_IDDelete a price preference.Connection
Delete a price preference.
Authentication
Connected account requiredTags
Delete a Product CategoryMEDUSA_ADMIN_DELETE_PRODUCT_CATEGORIES_IDDelete a product category. This doesn't delete the products in that category. A product category that has child categories can't be deleted, so you must delete its child categories first.Connection
Delete a product category. This doesn't delete the products in that category. A product category that has child categories can't be deleted, so you must delete its child categories first.
Authentication
Connected account requiredTags
Delete a Product OptionMEDUSA_ADMIN_DELETE_PRODUCT_OPTIONS_IDDelete a product option.Connection
Delete a product option.
Authentication
Connected account requiredTags
Remove Value from Product OptionMEDUSA_ADMIN_DELETE_PRODUCT_OPTIONS_ID_VALUES_VALUE_IDRemove a Value from a product option.Connection
Remove a Value from a product option.
Authentication
Connected account requiredTags
Delete a Product TagMEDUSA_ADMIN_DELETE_PRODUCT_TAGS_IDDelete a product tag. This doesn't delete products using the tag.Connection
Delete a product tag. This doesn't delete products using the tag.
Authentication
Connected account requiredTags
Delete a Product TypeMEDUSA_ADMIN_DELETE_PRODUCT_TYPES_IDDelete a product type. This doesn't delete products of this type.Connection
Delete a product type. This doesn't delete products of this type.
Authentication
Connected account requiredTags
Delete a ProductMEDUSA_ADMIN_DELETE_PRODUCTS_IDDelete a product.Connection
Delete a product.
Authentication
Connected account requiredTags
Delete Product VariantMEDUSA_ADMIN_DELETE_PRODUCTS_ID_VARIANTS_VARIANT_IDDelete a variant of a product.Connection
Delete a variant of a product.
Authentication
Connected account requiredTags
Remove Inventory Item Association with Product VariantMEDUSA_ADMIN_DELETE_PRODUCTS_ID_VARIANTS_VARIANT_ID_INVENTORY_ITEMS_INVENTORY_ITEM_IDRemove the association between an inventory item and its product variant.Connection
Remove the association between an inventory item and its product variant.
Authentication
Connected account requiredTags
Delete a PromotionMEDUSA_ADMIN_DELETE_PROMOTIONS_IDDelete a promotion.Connection
Delete a promotion.
Authentication
Connected account requiredTags
Delete a Property LabelMEDUSA_ADMIN_DELETE_PROPERTY_LABELS_IDDelete a property label.Connection
Delete a property label.
Authentication
Connected account requiredTags
Delete a Refund ReasonMEDUSA_ADMIN_DELETE_REFUND_REASONS_IDDelete a refund reason.Connection
Delete a refund reason.
Authentication
Connected account requiredTags
Delete a RegionMEDUSA_ADMIN_DELETE_REGIONS_IDDelete a region.Connection
Delete a region.
Authentication
Connected account requiredTags
Delete a ReservationMEDUSA_ADMIN_DELETE_RESERVATIONS_IDDelete a reservation.Connection
Delete a reservation.
Authentication
Connected account requiredTags
Delete a Return ReasonMEDUSA_ADMIN_DELETE_RETURN_REASONS_IDDelete a return reason.Connection
Delete a return reason.
Authentication
Connected account requiredTags
Remove Damaged Item from ReturnMEDUSA_ADMIN_DELETE_RETURNS_ID_DISMISS_ITEMS_ACTION_IDRemove a damaged item, whose quantity is to be dismissed, in the return by the ID of the item's `RECEIVE_DAMAGED_RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property. return.Connection
Remove a damaged item, whose quantity is to be dismissed, in the return by the ID of the item's `RECEIVE_DAMAGED_RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property. return.
Authentication
Connected account requiredTags
Cancel Return ReceivalMEDUSA_ADMIN_DELETE_RETURNS_ID_RECEIVECancel the receival process previously started, and hasn't been confirmed, of a return.Connection
Cancel the receival process previously started, and hasn't been confirmed, of a return.
Authentication
Connected account requiredTags
Remove a Received Item from ReturnMEDUSA_ADMIN_DELETE_RETURNS_ID_RECEIVE_ITEMS_ACTION_IDRemove a received item in the return by the ID of the item's `RECEIVE_RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property. return.Connection
Remove a received item in the return by the ID of the item's `RECEIVE_RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property. return.
Authentication
Connected account requiredTags
Cancel Return RequestMEDUSA_ADMIN_DELETE_RETURNS_ID_REQUESTCancel a requested return.Connection
Cancel a requested return.
Authentication
Connected account requiredTags
Remove Item from ReturnMEDUSA_ADMIN_DELETE_RETURNS_ID_REQUEST_ITEMS_ACTION_IDRemove a requested item to be returned by the ID of the item's `RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property. return.Connection
Remove a requested item to be returned by the ID of the item's `RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property. return.
Authentication
Connected account requiredTags
Remove Shipping Method from ReturnMEDUSA_ADMIN_DELETE_RETURNS_ID_SHIPPING_METHOD_ACTION_IDRemove a shipping method of the return by the ID of the item's `SHIPPING_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Remove a shipping method of the return by the ID of the item's `SHIPPING_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Delete a Sales ChannelMEDUSA_ADMIN_DELETE_SALES_CHANNELS_IDDelete a sales channel.Connection
Delete a sales channel.
Authentication
Connected account requiredTags
Delete a Shipping Option TypeMEDUSA_ADMIN_DELETE_SHIPPING_OPTION_TYPES_IDDelete a shipping option type.Connection
Delete a shipping option type.
Authentication
Connected account requiredTags
Delete a Shipping OptionMEDUSA_ADMIN_DELETE_SHIPPING_OPTIONS_IDDelete a shipping option.Connection
Delete a shipping option.
Authentication
Connected account requiredTags
Delete a Shipping ProfileMEDUSA_ADMIN_DELETE_SHIPPING_PROFILES_IDDelete a shipping profile.Connection
Delete a shipping profile.
Authentication
Connected account requiredTags
Delete a Stock LocationMEDUSA_ADMIN_DELETE_STOCK_LOCATIONS_IDDelete a stock location.Connection
Delete a stock location.
Authentication
Connected account requiredTags
Delete a Tax RateMEDUSA_ADMIN_DELETE_TAX_RATES_IDDelete a tax rate.Connection
Delete a tax rate.
Authentication
Connected account requiredTags
Remove Rule of Tax RateMEDUSA_ADMIN_DELETE_TAX_RATES_ID_RULES_RULE_IDRemove a tax rate's rule.Connection
Remove a tax rate's rule.
Authentication
Connected account requiredTags
Delete a Tax RegionMEDUSA_ADMIN_DELETE_TAX_REGIONS_IDDelete a tax region.Connection
Delete a tax region.
Authentication
Connected account requiredTags
Delete a FileMEDUSA_ADMIN_DELETE_UPLOADS_IDDelete a file. Uses the installed file module provider to delete the file.Connection
Delete a file. Uses the installed file module provider to delete the file.
Authentication
Connected account requiredTags
Delete a UserMEDUSA_ADMIN_DELETE_USERS_IDDelete a user.Connection
Delete a user.
Authentication
Connected account requiredTags
Remove View ConfigurationsMEDUSA_ADMIN_DELETE_VIEWS_ENTITY_CONFIGURATIONS_IDRemove view configurations of an entity. An admin user can only delete their own configurations.Connection
Remove view configurations of an entity. An admin user can only delete their own configurations.
Authentication
Connected account requiredTags
List CampaignsMEDUSA_ADMIN_GET_CAMPAIGNSRetrieve a list of campaigns. The campaigns can be filtered by fields such as `id`. The campaigns can also be sorted or paginated.Connection
Retrieve a list of campaigns. The campaigns can be filtered by fields such as `id`. The campaigns can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a CampaignMEDUSA_ADMIN_GET_CAMPAIGNS_IDRetrieve a campaign by its ID. You can expand the campaign's relations or select the fields that should be returned using the query parameters.Connection
Retrieve a campaign by its ID. You can expand the campaign's relations or select the fields that should be returned using the query parameters.
Authentication
Connected account requiredTags
List ClaimsMEDUSA_ADMIN_GET_CLAIMSRetrieve a list of claims. The claims can be filtered by fields such as `id`. The claims can also be sorted or paginated.Connection
Retrieve a list of claims. The claims can be filtered by fields such as `id`. The claims can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a ClaimMEDUSA_ADMIN_GET_CLAIMS_IDRetrieve a claim by its ID. You can expand the claim's relations or select the fields that should be returned using the query parameters.Connection
Retrieve a claim by its ID. You can expand the claim's relations or select the fields that should be returned using the query parameters.
Authentication
Connected account requiredTags
List CollectionsMEDUSA_ADMIN_GET_COLLECTIONSRetrieve a list of collections. The collections can be filtered by fields such as `id`. The collections can also be sorted or paginated.Connection
Retrieve a list of collections. The collections can be filtered by fields such as `id`. The collections can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a CollectionMEDUSA_ADMIN_GET_COLLECTIONS_IDRetrieve a collection by its ID. You can expand the collection's relations or select the fields that should be returned using the query parameters.Connection
Retrieve a collection by its ID. You can expand the collection's relations or select the fields that should be returned using the query parameters.
Authentication
Connected account requiredTags
List CurrenciesMEDUSA_ADMIN_GET_CURRENCIESRetrieve a list of currencies. The currencies can be filtered by fields such as `id`. The currencies can also be sorted or paginated.Connection
Retrieve a list of currencies. The currencies can be filtered by fields such as `id`. The currencies can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a CurrencyMEDUSA_ADMIN_GET_CURRENCIES_CODERetrieve a currency by its code. You can expand the currency's relations or select the fields that should be returned using the query parameters.Connection
Retrieve a currency by its code. You can expand the currency's relations or select the fields that should be returned using the query parameters.
Authentication
Connected account requiredTags
List Customer GroupsMEDUSA_ADMIN_GET_CUSTOMER_GROUPSRetrieve a list of customer groups. The customer groups can be filtered by fields such as `id`. The customer groups can also be sorted or paginated.Connection
Retrieve a list of customer groups. The customer groups can be filtered by fields such as `id`. The customer groups can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Customer GroupMEDUSA_ADMIN_GET_CUSTOMER_GROUPS_IDRetrieve a customer group by its ID. You can expand the customer group's relations or select the fields that should be returned.Connection
Retrieve a customer group by its ID. You can expand the customer group's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List CustomersMEDUSA_ADMIN_GET_CUSTOMERSRetrieve a list of customers. The customers can be filtered by fields such as `id`. The customers can also be sorted or paginated.Connection
Retrieve a list of customers. The customers can be filtered by fields such as `id`. The customers can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a CustomerMEDUSA_ADMIN_GET_CUSTOMERS_IDRetrieve a customer by its ID. You can expand the customer's relations or select the fields that should be returned.Connection
Retrieve a customer by its ID. You can expand the customer's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List AddressesMEDUSA_ADMIN_GET_CUSTOMERS_ID_ADDRESSESRetrieve a list of addresses in a customer. The addresses can be filtered by fields like `query`. The addresses can also be paginated.Connection
Retrieve a list of addresses in a customer. The addresses can be filtered by fields like `query`. The addresses can also be paginated.
Authentication
Connected account requiredTags
List AddressesMEDUSA_ADMIN_GET_CUSTOMERS_ID_ADDRESSES_ADDRESS_IDRetrieve a list of a customer's addresses. The addresses can be filtered by fields like `company`. The addresses can also be paginated.Connection
Retrieve a list of a customer's addresses. The addresses can be filtered by fields like `company`. The addresses can also be paginated.
Authentication
Connected account requiredTags
List Draft OrdersMEDUSA_ADMIN_GET_DRAFT_ORDERSRetrieve a list of draft orders. The draft orders can be filtered by fields such as `id`. The draft orders can also be sorted or paginated.Connection
Retrieve a list of draft orders. The draft orders can be filtered by fields such as `id`. The draft orders can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Draft OrderMEDUSA_ADMIN_GET_DRAFT_ORDERS_IDRetrieve a draft order by its ID. You can expand the draft order's relations or select the fields that should be returned using the query parameters.Connection
Retrieve a draft order by its ID. You can expand the draft order's relations or select the fields that should be returned using the query parameters.
Authentication
Connected account requiredTags
List ExchangesMEDUSA_ADMIN_GET_EXCHANGESRetrieve a list of exchanges. The exchanges can be filtered by fields such as `id`. The exchanges can also be sorted or paginated.Connection
Retrieve a list of exchanges. The exchanges can be filtered by fields such as `id`. The exchanges can also be sorted or paginated.
Authentication
Connected account requiredTags
Get an ExchangeMEDUSA_ADMIN_GET_EXCHANGES_IDRetrieve an exchange by its ID. You can expand the exchange's relations or select the fields that should be returned using query parameters.Connection
Retrieve an exchange by its ID. You can expand the exchange's relations or select the fields that should be returned using query parameters.
Authentication
Connected account requiredTags
List Feature FlagsMEDUSA_ADMIN_GET_FEATURE_FLAGSRetrieve a list of feature flags. The feature flags can be filtered by fields such as `id`. The feature flags can also be sorted or paginated.Connection
Retrieve a list of feature flags. The feature flags can be filtered by fields such as `id`. The feature flags can also be sorted or paginated.
Authentication
Connected account requiredTags
List Fulfillment ProvidersMEDUSA_ADMIN_GET_FULFILLMENT_PROVIDERSRetrieve a list of fulfillment providers. The fulfillment providers can be filtered by fields such as `id`. The fulfillment providers can also be sorted or paginated.Connection
Retrieve a list of fulfillment providers. The fulfillment providers can be filtered by fields such as `id`. The fulfillment providers can also be sorted or paginated.
Authentication
Connected account requiredTags
List Fulfillment OptionsMEDUSA_ADMIN_GET_FULFILLMENT_PROVIDERS_ID_OPTIONSRetrieve the list of fulfillment options of a fulfillment provider. These options may be retrieved from an integrated third-party service.Connection
Retrieve the list of fulfillment options of a fulfillment provider. These options may be retrieved from an integrated third-party service.
Authentication
Connected account requiredTags
Get a Service Zone in a Fulfillment SetMEDUSA_ADMIN_GET_FULFILLMENT_SETS_ID_SERVICE_ZONES_ZONE_IDRetrieve a service zone that belongs to a fulfillment set. be paginated.Connection
Retrieve a service zone that belongs to a fulfillment set. be paginated.
Authentication
Connected account requiredTags
List Gift CardsMEDUSA_ADMIN_GET_GIFT_CARDSRetrieve a list of gift cards. The gift cards can be filtered by fields such as `id`. The gift cards can also be sorted or paginated.Connection
Retrieve a list of gift cards. The gift cards can be filtered by fields such as `id`. The gift cards can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Gift CardMEDUSA_ADMIN_GET_GIFT_CARDS_IDRetrieve a gift card by its ID. You can expand the gift card's relations or select the fields that should be returned.Connection
Retrieve a gift card by its ID. You can expand the gift card's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Gift Card's OrdersMEDUSA_ADMIN_GET_GIFT_CARDS_ID_ORDERSRetrieve the list of orders that a gift card was used in.Connection
Retrieve the list of orders that a gift card was used in.
Authentication
Connected account requiredTags
Get Index DetailsMEDUSA_ADMIN_GET_INDEX_DETAILSRetrieve index metadata, including entity type, status, last synced key, and last updated timestamp.Connection
Retrieve index metadata, including entity type, status, last synced key, and last updated timestamp.
Authentication
Connected account requiredTags
List Inventory ItemsMEDUSA_ADMIN_GET_INVENTORY_ITEMSRetrieve a list of inventory items. The inventory items can be filtered by fields such as `id`. The inventory items can also be sorted or paginated.Connection
Retrieve a list of inventory items. The inventory items can be filtered by fields such as `id`. The inventory items can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Inventory ItemMEDUSA_ADMIN_GET_INVENTORY_ITEMS_IDRetrieve a inventory item by its ID. You can expand the inventory item's relations or select the fields that should be returned.Connection
Retrieve a inventory item by its ID. You can expand the inventory item's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Inventory LevelsMEDUSA_ADMIN_GET_INVENTORY_ITEMS_ID_LOCATION_LEVELSRetrieve a list of inventory levels associated with an inventory item. The inventory levels can be filtered by fields like `location_id`. The inventory levels can also be paginated.Connection
Retrieve a list of inventory levels associated with an inventory item. The inventory levels can be filtered by fields like `location_id`. The inventory levels can also be paginated.
Authentication
Connected account requiredTags
List InvitesMEDUSA_ADMIN_GET_INVITESRetrieve a list of invites. The invites can be filtered by fields such as `id`. The invites can also be sorted or paginated.Connection
Retrieve a list of invites. The invites can be filtered by fields such as `id`. The invites can also be sorted or paginated.
Authentication
Connected account requiredTags
Get an InviteMEDUSA_ADMIN_GET_INVITES_IDRetrieve an invite by its ID. You can expand the invite's relations or select the fields that should be returned.Connection
Retrieve an invite by its ID. You can expand the invite's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Layout ConfigurationsMEDUSA_ADMIN_GET_LAYOUTS_CONFIGURATIONSRetrieve a list of layout configurations made by admin users. The layouts can be filtered by fields such as `id`. The layouts can also be sorted or paginated.Connection
Retrieve a list of layout configurations made by admin users. The layouts can be filtered by fields such as `id`. The layouts can also be sorted or paginated.
Authentication
Connected account requiredTags
List Layout ConfigurationsMEDUSA_ADMIN_GET_LAYOUTS_ZONE_CONFIGURATIONRetrieve a list of layout configurations for a specific zone. These are the configurations made by the users for their admin dashboard layouts.Connection
Retrieve a list of layout configurations for a specific zone. These are the configurations made by the users for their admin dashboard layouts.
Authentication
Connected account requiredTags
List LocalesMEDUSA_ADMIN_GET_LOCALESRetrieve a list of locales. The locales can be filtered by fields such as `code`. The locales can also be sorted or paginated.Connection
Retrieve a list of locales. The locales can be filtered by fields such as `code`. The locales can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a LocaleMEDUSA_ADMIN_GET_LOCALES_CODERetrieve a locale by its code. You can expand the locale's relations or select the fields that should be returned.Connection
Retrieve a locale by its code. You can expand the locale's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List NotificationsMEDUSA_ADMIN_GET_NOTIFICATIONSRetrieve a list of notifications. The notifications can be filtered by fields such as `id`. The notifications can also be sorted or paginated.Connection
Retrieve a list of notifications. The notifications can be filtered by fields such as `id`. The notifications can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a NotificationMEDUSA_ADMIN_GET_NOTIFICATIONS_IDRetrieve a notification by its ID. You can expand the notification's relations or select the fields that should be returned.Connection
Retrieve a notification by its ID. You can expand the notification's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List OrdersMEDUSA_ADMIN_GET_ORDERSRetrieve a list of orders. The orders can be filtered by fields such as `id`. The orders can also be sorted or paginated.Connection
Retrieve a list of orders. The orders can be filtered by fields such as `id`. The orders can also be sorted or paginated.
Authentication
Connected account requiredTags
Get an OrderMEDUSA_ADMIN_GET_ORDERS_IDRetrieve an order by its ID. You can expand the order's relations or select the fields that should be returned.Connection
Retrieve an order by its ID. You can expand the order's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Changes on an OrderMEDUSA_ADMIN_GET_ORDERS_ID_CHANGESRetrieve a list of changes made on an order, including returns, exchanges, etc... The changes can be filtered by fields like `created_at`. The changes can also be paginated.Connection
Retrieve a list of changes made on an order, including returns, exchanges, etc... The changes can be filtered by fields like `created_at`. The changes can also be paginated.
Authentication
Connected account requiredTags
List Line ItemsMEDUSA_ADMIN_GET_ORDERS_ID_LINE_ITEMSRetrieve a list of line items in a order. The line items can be filtered by fields like FILTER FIELDS. The line items can also be paginated.Connection
Retrieve a list of line items in a order. The line items can be filtered by fields like FILTER FIELDS. The line items can also be paginated.
Authentication
Connected account requiredTags
Get PreviewMEDUSA_ADMIN_GET_ORDERS_ID_PREVIEWRetrieve a preview of an order using its associated change, such as an edit.Connection
Retrieve a preview of an order using its associated change, such as an edit.
Authentication
Connected account requiredTags
List Shipping Options for OrderMEDUSA_ADMIN_GET_ORDERS_ID_SHIPPING_OPTIONSRetrieve a list of shipping options that can be used for outbound shipping in an order. This is especially useful when adding outbound shipping to order exchanges or claims.Connection
Retrieve a list of shipping options that can be used for outbound shipping in an order. This is especially useful when adding outbound shipping to order exchanges or claims.
Authentication
Connected account requiredTags
List PaymentsMEDUSA_ADMIN_GET_PAYMENTSRetrieve a list of payments. The payments can be filtered by fields such as `id`. The payments can also be sorted or paginated.Connection
Retrieve a list of payments. The payments can be filtered by fields such as `id`. The payments can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a PaymentMEDUSA_ADMIN_GET_PAYMENTS_IDRetrieve a payment by its ID. You can expand the payment's relations or select the fields that should be returned.Connection
Retrieve a payment by its ID. You can expand the payment's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Payment ProvidersMEDUSA_ADMIN_GET_PAYMENTS_PAYMENT_PROVIDERSRetrieve a list of payment providers. The payment providers can be filtered by fields such as `id`. The payment providers can also be sorted or paginated.Connection
Retrieve a list of payment providers. The payment providers can be filtered by fields such as `id`. The payment providers can also be sorted or paginated.
Authentication
Connected account requiredTags
List PluginsMEDUSA_ADMIN_GET_PLUGINSRetrieve the list of plugins installed in the Medusa application.Connection
Retrieve the list of plugins installed in the Medusa application.
Authentication
Connected account requiredTags
List Price ListsMEDUSA_ADMIN_GET_PRICE_LISTSRetrieve a list of price lists. The price lists can be filtered by fields such as `id`. The price lists can also be sorted or paginated.Connection
Retrieve a list of price lists. The price lists can be filtered by fields such as `id`. The price lists can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Price ListMEDUSA_ADMIN_GET_PRICE_LISTS_IDRetrieve a price list by its ID. You can expand the price list's relations or select the fields that should be returned.Connection
Retrieve a price list by its ID. You can expand the price list's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Prices for a Price ListMEDUSA_ADMIN_GET_PRICE_LISTS_ID_PRICESRetrieve a list of prices in a price list. The prices can be filtered by fields like FILTER FIELDS. The prices can also be paginated.Connection
Retrieve a list of prices in a price list. The prices can be filtered by fields like FILTER FIELDS. The prices can also be paginated.
Authentication
Connected account requiredTags
List Price PreferencesMEDUSA_ADMIN_GET_PRICE_PREFERENCESRetrieve a list of price preferences. The price preferences can be filtered by fields such as `id`. The price preferences can also be sorted or paginated.Connection
Retrieve a list of price preferences. The price preferences can be filtered by fields such as `id`. The price preferences can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Price PreferenceMEDUSA_ADMIN_GET_PRICE_PREFERENCES_IDRetrieve a price preference by its ID. You can expand the price preference's relations or select the fields that should be returned.Connection
Retrieve a price preference by its ID. You can expand the price preference's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Product CategoriesMEDUSA_ADMIN_GET_PRODUCT_CATEGORIESRetrieve a list of product categories. The product categories can be filtered by fields such as `id`. The product categories can also be sorted or paginated.Connection
Retrieve a list of product categories. The product categories can be filtered by fields such as `id`. The product categories can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Product CategoryMEDUSA_ADMIN_GET_PRODUCT_CATEGORIES_IDRetrieve a product category by its ID. You can expand the product category's relations or select the fields that should be returned.Connection
Retrieve a product category by its ID. You can expand the product category's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Product OptionsMEDUSA_ADMIN_GET_PRODUCT_OPTIONSRetrieve a list of product options. The product options can be filtered by fields such as `id`. The product options can also be sorted or paginated.Connection
Retrieve a list of product options. The product options can be filtered by fields such as `id`. The product options can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Product OptionMEDUSA_ADMIN_GET_PRODUCT_OPTIONS_IDRetrieve a product option by its ID. You can expand the product option's relations or select the fields that should be returned.Connection
Retrieve a product option by its ID. You can expand the product option's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Product Option ValuesMEDUSA_ADMIN_GET_PRODUCT_OPTIONS_ID_VALUESRetrieve a list of values in a product option. The values can be filtered by fields like `id`. The values can also be paginated.Connection
Retrieve a list of values in a product option. The values can be filtered by fields like `id`. The values can also be paginated.
Authentication
Connected account requiredTags
Get Product Option ValueMEDUSA_ADMIN_GET_PRODUCT_OPTIONS_ID_VALUES_VALUE_IDGet a product option value by its ID.Connection
Get a product option value by its ID.
Authentication
Connected account requiredTags
List Product TagsMEDUSA_ADMIN_GET_PRODUCT_TAGSRetrieve a list of product tags. The product tags can be filtered by fields such as `id`. The product tags can also be sorted or paginated.Connection
Retrieve a list of product tags. The product tags can be filtered by fields such as `id`. The product tags can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Product TagMEDUSA_ADMIN_GET_PRODUCT_TAGS_IDRetrieve a product tag by its ID. You can expand the product tag's relations or select the fields that should be returned.Connection
Retrieve a product tag by its ID. You can expand the product tag's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Product TypesMEDUSA_ADMIN_GET_PRODUCT_TYPESRetrieve a list of product types. The product types can be filtered by fields such as `id`. The product types can also be sorted or paginated.Connection
Retrieve a list of product types. The product types can be filtered by fields such as `id`. The product types can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Product TypeMEDUSA_ADMIN_GET_PRODUCT_TYPES_IDRetrieve a product type by its ID. You can expand the product type's relations or select the fields that should be returned.Connection
Retrieve a product type by its ID. You can expand the product type's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Product VariantsMEDUSA_ADMIN_GET_PRODUCT_VARIANTSRetrieve a list of product variants. The product variants can be filtered by fields such as `id`. The product variants can also be sorted or paginated.Connection
Retrieve a list of product variants. The product variants can be filtered by fields such as `id`. The product variants can also be sorted or paginated.
Authentication
Connected account requiredTags
List ProductsMEDUSA_ADMIN_GET_PRODUCTSRetrieve a list of products. The products can be filtered by fields such as `id`. The products can also be sorted or paginated.Connection
Retrieve a list of products. The products can be filtered by fields such as `id`. The products can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a ProductMEDUSA_ADMIN_GET_PRODUCTS_IDRetrieve a product by its ID. You can expand the product's relations or select the fields that should be returned.Connection
Retrieve a product by its ID. You can expand the product's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List a Product's OptionsMEDUSA_ADMIN_GET_PRODUCTS_ID_OPTIONSRetrieve a list of options of a product. The options can be filtered by fields like `id`. The options can also be paginated.Connection
Retrieve a list of options of a product. The options can be filtered by fields like `id`. The options can also be paginated.
Authentication
Connected account requiredTags
List Variants of a ProductMEDUSA_ADMIN_GET_PRODUCTS_ID_VARIANTSRetrieve a list of variants in a product. The variants can be filtered by fields like FILTER FIELDS. The variants can also be paginated.Connection
Retrieve a list of variants in a product. The variants can be filtered by fields like FILTER FIELDS. The variants can also be paginated.
Authentication
Connected account requiredTags
Get Variant of a ProductMEDUSA_ADMIN_GET_PRODUCTS_ID_VARIANTS_VARIANT_IDRetrieve a product's variant by its ID.Connection
Retrieve a product's variant by its ID.
Authentication
Connected account requiredTags
List PromotionsMEDUSA_ADMIN_GET_PROMOTIONSRetrieve a list of promotions. The promotions can be filtered by fields such as `id`. The promotions can also be sorted or paginated.Connection
Retrieve a list of promotions. The promotions can be filtered by fields such as `id`. The promotions can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a PromotionMEDUSA_ADMIN_GET_PROMOTIONS_IDRetrieve a promotion by its ID. You can expand the promotion's relations or select the fields that should be returned.Connection
Retrieve a promotion by its ID. You can expand the promotion's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Rules of a PromotionMEDUSA_ADMIN_GET_PROMOTIONS_ID_RULE_TYPERetrieve a list of rules in a promotion. The type of rules retrieved depend on the value of the `rule_type` path parameter: - If `rule_type` is `rules`, the promotion's rules are retrivied. - If `rule_type` is `target-rules`, the target rules of the promotion's application method are retrieved. - If `rule_type` is `buy-rules`, the buy rules of the promotion's application method are retrieved.Connection
Retrieve a list of rules in a promotion. The type of rules retrieved depend on the value of the `rule_type` path parameter: - If `rule_type` is `rules`, the promotion's rules are retrivied. - If `rule_type` is `target-rules`, the target rules of the promotion's application method are retrieved. - If `rule_type` is `buy-rules`, the buy rules of the promotion's application method are retrieved.
Authentication
Connected account requiredTags
List Rule Attribute Options of a Rule TypeMEDUSA_ADMIN_GET_PROMOTIONS_RULE_ATTRIBUTE_OPTIONS_RULE_TYPERetrieve a list of potential rule attributes for the promotion and application method types specified in the query parameters. Only the attributes of the rule type specified in the path parameter are retrieved: - If `rule_type` is `rules`, the attributes of the promotion's type are retrieved. - If `rule_type` is `target-rules`, the target rules' attributes of the application method's type are retrieved. - If `rule_type` is `buy-rules`, the buy rules' attributes of the application method's type are retrieved.Connection
Retrieve a list of potential rule attributes for the promotion and application method types specified in the query parameters. Only the attributes of the rule type specified in the path parameter are retrieved: - If `rule_type` is `rules`, the attributes of the promotion's type are retrieved. - If `rule_type` is `target-rules`, the target rules' attributes of the application method's type are retrieved. - If `rule_type` is `buy-rules`, the buy rules' attributes of the application method's type are retrieved.
Authentication
Connected account requiredTags
List Rule Values Given a Rule AttributeMEDUSA_ADMIN_GET_PROMOTIONS_RULE_VALUE_OPTIONS_RULE_TYPE_RULE_ATTRIBUTE_IDRetrieve all potential values for promotion rules and target and buy rules based on the specified rule attribute and type. For example, if you provide the ID of the `currency_code` rule attribute, and set `rule_type` to `rules`, a list of currencies are retrieved in label-value pairs.Connection
Retrieve all potential values for promotion rules and target and buy rules based on the specified rule attribute and type. For example, if you provide the ID of the `currency_code` rule attribute, and set `rule_type` to `rules`, a list of currencies are retrieved in label-value pairs.
Authentication
Connected account requiredTags
List Property LabelsMEDUSA_ADMIN_GET_PROPERTY_LABELSRetrieve a list of property labels. The property labels can be filtered by fields such as `id`. The property labels can also be sorted or paginated.Connection
Retrieve a list of property labels. The property labels can be filtered by fields such as `id`. The property labels can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Property LabelMEDUSA_ADMIN_GET_PROPERTY_LABELS_IDRetrieve a property label by its ID.Connection
Retrieve a property label by its ID.
Authentication
Connected account requiredTags
List Refund ReasonsMEDUSA_ADMIN_GET_REFUND_REASONSRetrieve a list of refund reasons. The refund reasons can be filtered by fields such as `id`. The refund reasons can also be sorted or paginated.Connection
Retrieve a list of refund reasons. The refund reasons can be filtered by fields such as `id`. The refund reasons can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Refund ReasonMEDUSA_ADMIN_GET_REFUND_REASONS_IDRetrieve a refund reason by its ID. You can expand the refund reason's relations or select the fields that should be returned.Connection
Retrieve a refund reason by its ID. You can expand the refund reason's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List RegionsMEDUSA_ADMIN_GET_REGIONSRetrieve a list of regions. The regions can be filtered by fields such as `id`. The regions can also be sorted or paginated.Connection
Retrieve a list of regions. The regions can be filtered by fields such as `id`. The regions can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a RegionMEDUSA_ADMIN_GET_REGIONS_IDRetrieve a region by its ID. You can expand the region's relations or select the fields that should be returned.Connection
Retrieve a region by its ID. You can expand the region's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List ReservationsMEDUSA_ADMIN_GET_RESERVATIONSRetrieve a list of reservations. The reservations can be filtered by fields such as `id`. The reservations can also be sorted or paginated.Connection
Retrieve a list of reservations. The reservations can be filtered by fields such as `id`. The reservations can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a ReservationMEDUSA_ADMIN_GET_RESERVATIONS_IDRetrieve a reservation by its ID. You can expand the reservation's relations or select the fields that should be returned.Connection
Retrieve a reservation by its ID. You can expand the reservation's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Return ReasonsMEDUSA_ADMIN_GET_RETURN_REASONSRetrieve a list of return reasons. The return reasons can be filtered by fields such as `id`. The return reasons can also be sorted or paginated.Connection
Retrieve a list of return reasons. The return reasons can be filtered by fields such as `id`. The return reasons can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Return ReasonMEDUSA_ADMIN_GET_RETURN_REASONS_IDRetrieve a return reason by its ID. You can expand the return reason's relations or select the fields that should be returned.Connection
Retrieve a return reason by its ID. You can expand the return reason's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List ReturnsMEDUSA_ADMIN_GET_RETURNSRetrieve a list of returns. The returns can be filtered by fields such as `id`. The returns can also be sorted or paginated.Connection
Retrieve a list of returns. The returns can be filtered by fields such as `id`. The returns can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a ReturnMEDUSA_ADMIN_GET_RETURNS_IDRetrieve a return by its ID. You can expand the return's relations or select the fields that should be returned.Connection
Retrieve a return by its ID. You can expand the return's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Sales ChannelsMEDUSA_ADMIN_GET_SALES_CHANNELSRetrieve a list of sales channels. The sales channels can be filtered by fields such as `id`. The sales channels can also be sorted or paginated.Connection
Retrieve a list of sales channels. The sales channels can be filtered by fields such as `id`. The sales channels can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Sales ChannelMEDUSA_ADMIN_GET_SALES_CHANNELS_IDRetrieve a sales channel by its ID. You can expand the sales channel's relations or select the fields that should be returned.Connection
Retrieve a sales channel by its ID. You can expand the sales channel's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List SearchMEDUSA_ADMIN_GET_SEARCHRetrieve a list of search. The search can be filtered by fields such as `id`. The search can also be sorted or paginated.Connection
Retrieve a list of search. The search can be filtered by fields such as `id`. The search can also be sorted or paginated.
Authentication
Connected account requiredTags
List Shipping Option TypesMEDUSA_ADMIN_GET_SHIPPING_OPTION_TYPESRetrieve a list of shipping option types. The shipping option types can be filtered by fields such as `id`. The shipping option types can also be sorted or paginated.Connection
Retrieve a list of shipping option types. The shipping option types can be filtered by fields such as `id`. The shipping option types can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Shipping Option TypeMEDUSA_ADMIN_GET_SHIPPING_OPTION_TYPES_IDRetrieve a shipping option type by its ID. You can expand the shipping option type's relations or select the fields that should be returned.Connection
Retrieve a shipping option type by its ID. You can expand the shipping option type's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Shipping OptionsMEDUSA_ADMIN_GET_SHIPPING_OPTIONSRetrieve a list of shipping options. The shipping options can be filtered by fields such as `id`. The shipping options can also be sorted or paginated.Connection
Retrieve a list of shipping options. The shipping options can be filtered by fields such as `id`. The shipping options can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Shipping OptionMEDUSA_ADMIN_GET_SHIPPING_OPTIONS_IDRetrieve a shipping option by its ID. You can expand the shipping option's relations or select the fields that should be returned.Connection
Retrieve a shipping option by its ID. You can expand the shipping option's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Shipping ProfilesMEDUSA_ADMIN_GET_SHIPPING_PROFILESRetrieve a list of shipping profiles. The shipping profiles can be filtered by fields such as `id`. The shipping profiles can also be sorted or paginated.Connection
Retrieve a list of shipping profiles. The shipping profiles can be filtered by fields such as `id`. The shipping profiles can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Shipping ProfileMEDUSA_ADMIN_GET_SHIPPING_PROFILES_IDRetrieve a shipping profile by its ID. You can expand the shipping profile's relations or select the fields that should be returned.Connection
Retrieve a shipping profile by its ID. You can expand the shipping profile's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Stock LocationsMEDUSA_ADMIN_GET_STOCK_LOCATIONSRetrieve a list of stock locations. The stock locations can be filtered by fields such as `id`. The stock locations can also be sorted or paginated.Connection
Retrieve a list of stock locations. The stock locations can be filtered by fields such as `id`. The stock locations can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Stock LocationMEDUSA_ADMIN_GET_STOCK_LOCATIONS_IDRetrieve a stock location by its ID. You can expand the stock location's relations or select the fields that should be returned.Connection
Retrieve a stock location by its ID. You can expand the stock location's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Store Credit AccountsMEDUSA_ADMIN_GET_STORE_CREDIT_ACCOUNTSRetrieve a list of store credit accounts. The store credit accounts can be filtered by fields such as `id`. The store credit accounts can also be sorted or paginated.Connection
Retrieve a list of store credit accounts. The store credit accounts can be filtered by fields such as `id`. The store credit accounts can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Store Credit AccountMEDUSA_ADMIN_GET_STORE_CREDIT_ACCOUNTS_IDRetrieve a store credit account by its ID. You can expand the store credit account's relations or select the fields that should be returned.Connection
Retrieve a store credit account by its ID. You can expand the store credit account's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List TransactionsMEDUSA_ADMIN_GET_STORE_CREDIT_ACCOUNTS_ID_TRANSACTIONSRetrieve a list of transactions in a store credit account. The transactions can be filtered by fields like FILTER FIELDS. The transactions can also be paginated.Connection
Retrieve a list of transactions in a store credit account. The transactions can be filtered by fields like FILTER FIELDS. The transactions can also be paginated.
Authentication
Connected account requiredTags
List StoresMEDUSA_ADMIN_GET_STORESRetrieve a list of stores. The stores can be filtered by fields such as `id`. The stores can also be sorted or paginated.Connection
Retrieve a list of stores. The stores can be filtered by fields such as `id`. The stores can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a StoreMEDUSA_ADMIN_GET_STORES_IDRetrieve a store by its ID. You can expand the store's relations or select the fields that should be returned.Connection
Retrieve a store by its ID. You can expand the store's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Tax ProvidersMEDUSA_ADMIN_GET_TAX_PROVIDERSRetrieve a list of tax providers installed in the Medusa application through Tax Module Providers. The tax providers can be filtered by fields such as `id`. The tax providers can also be sorted or paginated.Connection
Retrieve a list of tax providers installed in the Medusa application through Tax Module Providers. The tax providers can be filtered by fields such as `id`. The tax providers can also be sorted or paginated.
Authentication
Connected account requiredTags
List Tax RatesMEDUSA_ADMIN_GET_TAX_RATESRetrieve a list of tax rates. The tax rates can be filtered by fields such as `id`. The tax rates can also be sorted or paginated.Connection
Retrieve a list of tax rates. The tax rates can be filtered by fields such as `id`. The tax rates can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Tax RateMEDUSA_ADMIN_GET_TAX_RATES_IDRetrieve a tax rate by its ID. You can expand the tax rate's relations or select the fields that should be returned.Connection
Retrieve a tax rate by its ID. You can expand the tax rate's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List Tax RegionsMEDUSA_ADMIN_GET_TAX_REGIONSRetrieve a list of tax regions. The tax regions can be filtered by fields such as `id`. The tax regions can also be sorted or paginated.Connection
Retrieve a list of tax regions. The tax regions can be filtered by fields such as `id`. The tax regions can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Tax RegionMEDUSA_ADMIN_GET_TAX_REGIONS_IDRetrieve a tax region by its ID. You can expand the tax region's relations or select the fields that should be returned.Connection
Retrieve a tax region by its ID. You can expand the tax region's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List TranslationsMEDUSA_ADMIN_GET_TRANSLATIONSRetrieve a list of translations. The translations can be filtered by fields such as `reference_id` (For example, the ID of a product). The translations can also be sorted or paginated.Connection
Retrieve a list of translations. The translations can be filtered by fields such as `reference_id` (For example, the ID of a product). The translations can also be sorted or paginated.
Authentication
Connected account requiredTags
List Translatable EntitiesMEDUSA_ADMIN_GET_TRANSLATIONS_ENTITIESRetrieve a list of translatable entities. The entities can be filtered by fields such as `id`. The entities can also be sorted or paginated.Connection
Retrieve a list of translatable entities. The entities can be filtered by fields such as `id`. The entities can also be sorted or paginated.
Authentication
Connected account requiredTags
List Translation SettingsMEDUSA_ADMIN_GET_TRANSLATIONS_SETTINGSRetrieve the list of translatable fields for all entities, such as products and collections. You can also filter the results by entity type or active entities.Connection
Retrieve the list of translatable fields for all entities, such as products and collections. You can also filter the results by entity type or active entities.
Authentication
Connected account requiredTags
Retrieve Translation StatisticsMEDUSA_ADMIN_GET_TRANSLATIONS_STATISTICSGet statistics on translations for specified locales and entity types. This includes overall translation progress for each entity type, and statistics for each locale within those entity types.Connection
Get statistics on translations for specified locales and entity types. This includes overall translation progress for each entity type, and statistics for each locale within those entity types.
Authentication
Connected account requiredTags
Get a FileMEDUSA_ADMIN_GET_UPLOADS_IDRetrieve an uploaded file by its ID. You can expand the file's relations or select the fields that should be returned.Connection
Retrieve an uploaded file by its ID. You can expand the file's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
List UsersMEDUSA_ADMIN_GET_USERSRetrieve a list of users. The users can be filtered by fields such as `id`. The users can also be sorted or paginated.Connection
Retrieve a list of users. The users can be filtered by fields such as `id`. The users can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a UserMEDUSA_ADMIN_GET_USERS_IDRetrieve a user by its ID. You can expand the user's relations or select the fields that should be returned.Connection
Retrieve a user by its ID. You can expand the user's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
Get Logged-In UserMEDUSA_ADMIN_GET_USERS_MERetrieve the logged-in user's details.Connection
Retrieve the logged-in user's details.
Authentication
Connected account requiredTags
List ViewsMEDUSA_ADMIN_GET_VIEWS_ENTITIESRetrieve a list of views. The views can be filtered by fields such as `id`. The views can also be sorted or paginated.Connection
Retrieve a list of views. The views can be filtered by fields such as `id`. The views can also be sorted or paginated.
Authentication
Connected account requiredTags
List Columns in ViewMEDUSA_ADMIN_GET_VIEWS_ENTITY_COLUMNSRetrieve a list of columns in a view for an entity. The columns are retrieved for the authenticated admin user.Connection
Retrieve a list of columns in a view for an entity. The columns are retrieved for the authenticated admin user.
Authentication
Connected account requiredTags
List View ConfigurationsMEDUSA_ADMIN_GET_VIEWS_ENTITY_CONFIGURATIONSRetrieve a list of view configurations of an entity. The configurations can be filtered by fields like `id`. The configurations can also be paginated. An admin user can only retrieve their own configurations.Connection
Retrieve a list of view configurations of an entity. The configurations can be filtered by fields like `id`. The configurations can also be paginated. An admin user can only retrieve their own configurations.
Authentication
Connected account requiredTags
Get Active View ConfigurationMEDUSA_ADMIN_GET_VIEWS_ENTITY_CONFIGURATIONS_ACTIVEGet the active view configurations for an entity. If no active view is set, `null` is returned. An admin user can only retrieve their own active configuration.Connection
Get the active view configurations for an entity. If no active view is set, `null` is returned. An admin user can only retrieve their own active configuration.
Authentication
Connected account requiredTags
Get View ConfigurationMEDUSA_ADMIN_GET_VIEWS_ENTITY_CONFIGURATIONS_IDRetrieve a view configuration for an entity. An admin user can only retrieve their own configurations.Connection
Retrieve a view configuration for an entity. An admin user can only retrieve their own configurations.
Authentication
Connected account requiredTags
List Workflows ExecutionsMEDUSA_ADMIN_GET_WORKFLOWS_EXECUTIONSRetrieve a list of workflows executions. The workflows executions can be filtered by fields such as `id`. The workflows executions can also be sorted or paginated.Connection
Retrieve a list of workflows executions. The workflows executions can be filtered by fields such as `id`. The workflows executions can also be sorted or paginated.
Authentication
Connected account requiredTags
Get a Workflows ExecutionMEDUSA_ADMIN_GET_WORKFLOWS_EXECUTIONS_IDRetrieve a workflows execution by its ID. You can expand the workflows execution's relations or select the fields that should be returned.Connection
Retrieve a workflows execution by its ID. You can expand the workflows execution's relations or select the fields that should be returned.
Authentication
Connected account requiredTags
Subscribe to a Workflow's ExecutionMEDUSA_ADMIN_GET_WORKFLOWS_EXECUTIONS_WORKFLOW_ID_SUBSCRIBESubscribe to a workflow's execution to receive real-time information about its steps, status, and data. This route returns an event stream that you can consume using the [EventSource API](https://developer.mozilla.org/en-US/docs/Web/API/EventSource).Connection
Subscribe to a workflow's execution to receive real-time information about its steps, status, and data. This route returns an event stream that you can consume using the [EventSource API](https://developer.mozilla.org/en-US/docs/Web/API/EventSource).
Authentication
Connected account requiredTags
Get Workflow Execution's DetailsMEDUSA_ADMIN_GET_WORKFLOWS_EXECUTIONS_WORKFLOW_ID_TRANSACTION_IDGet the details of the workflow's execution.Connection
Get the details of the workflow's execution.
Authentication
Connected account requiredTags
Subscribe to Workflow Execution EventsMEDUSA_ADMIN_GET_WORKFLOWS_EXECUTIONS_WORKFLOW_ID_TRANSACTION_ID_SUBSCRIBESubscribe to workflow execution events for a specific workflow and transaction. This endpoint establishes a Server-Sent Events (SSE) connection, allowing clients to receive real-time updates about the workflow execution. The events include details such as the event type, workflow ID, transaction ID, step information, response, result, and any errors that occur during the execution.Connection
Subscribe to workflow execution events for a specific workflow and transaction. This endpoint establishes a Server-Sent Events (SSE) connection, allowing clients to receive real-time updates about the workflow execution. The events include details such as the event type, workflow ID, transaction ID, step information, response, result, and any errors that occur during the execution.
Authentication
Connected account requiredTags
Create CampaignMEDUSA_ADMIN_POST_CAMPAIGNSCreate a campaign.Connection
Create a campaign.
Authentication
Connected account requiredTags
Update a CampaignMEDUSA_ADMIN_POST_CAMPAIGNS_IDUpdate a campaign's details.Connection
Update a campaign's details.
Authentication
Connected account requiredTags
Manage the Promotions of a CampaignMEDUSA_ADMIN_POST_CAMPAIGNS_ID_PROMOTIONSManage the promotions of a campaign, either by adding them or removing them from the campaign.Connection
Manage the promotions of a campaign, either by adding them or removing them from the campaign.
Authentication
Connected account requiredTags
Create a ClaimMEDUSA_ADMIN_POST_CLAIMSCreate a claim. The claim is still in the request state, and the changes are only applied on the order once the claim is confirmed.Connection
Create a claim. The claim is still in the request state, and the changes are only applied on the order once the claim is confirmed.
Authentication
Connected account requiredTags
Cancel a ClaimMEDUSA_ADMIN_POST_CLAIMS_ID_CANCELCancel a claim and its associated return.Connection
Cancel a claim and its associated return.
Authentication
Connected account requiredTags
Add Claim Items to a ClaimMEDUSA_ADMIN_POST_CLAIMS_ID_CLAIM_ITEMSAdd order items to a claim as claim items. These claim items will have the action `WRITE_OFF_ITEM`.Connection
Add order items to a claim as claim items. These claim items will have the action `WRITE_OFF_ITEM`.
Authentication
Connected account requiredTags
Update a Claim ItemMEDUSA_ADMIN_POST_CLAIMS_ID_CLAIM_ITEMS_ACTION_IDUpdate an order item in a claim by the ID of the item's `WRITE_OFF_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update an order item in a claim by the ID of the item's `WRITE_OFF_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Add Inbound Items to a ClaimMEDUSA_ADMIN_POST_CLAIMS_ID_INBOUND_ITEMSAdd inbound (or return) items to a claim. These inbound items will have a `RETURN_ITEM` action.Connection
Add inbound (or return) items to a claim. These inbound items will have a `RETURN_ITEM` action.
Authentication
Connected account requiredTags
Update Inbound Items of a ClaimMEDUSA_ADMIN_POST_CLAIMS_ID_INBOUND_ITEMS_ACTION_IDUpdate an inbound (or return) item of a claim using the `ID` of the item's `RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update an inbound (or return) item of a claim using the `ID` of the item's `RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Add an Inbound Shipping Method to a ClaimMEDUSA_ADMIN_POST_CLAIMS_ID_INBOUND_SHIPPING_METHODAdd an inbound (or return) shipping method to a claim. The inbound shipping method will have a `SHIPPING_ADD` action.Connection
Add an inbound (or return) shipping method to a claim. The inbound shipping method will have a `SHIPPING_ADD` action.
Authentication
Connected account requiredTags
Update Inbound Shipping Method of a ClaimMEDUSA_ADMIN_POST_CLAIMS_ID_INBOUND_SHIPPING_METHOD_ACTION_IDUpdate the shipping method for returning items in the claim using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update the shipping method for returning items in the claim using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Add Outbound Items to a ClaimMEDUSA_ADMIN_POST_CLAIMS_ID_OUTBOUND_ITEMSAdd outbound (or new) items to a claim. These outbound items will have an `ITEM_ADD` action.Connection
Add outbound (or new) items to a claim. These outbound items will have an `ITEM_ADD` action.
Authentication
Connected account requiredTags
Update Outbound Item of a ClaimMEDUSA_ADMIN_POST_CLAIMS_ID_OUTBOUND_ITEMS_ACTION_IDUpdate an outbound (or new) item of a claim using the `ID` of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update an outbound (or new) item of a claim using the `ID` of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Add Outbound Shipping Methods to a ClaimMEDUSA_ADMIN_POST_CLAIMS_ID_OUTBOUND_SHIPPING_METHODAdd an outbound shipping method to a claim. The outbound shipping method will have a `SHIPPING_ADD` action.Connection
Add an outbound shipping method to a claim. The outbound shipping method will have a `SHIPPING_ADD` action.
Authentication
Connected account requiredTags
Update Outbound Shipping Method of a ClaimMEDUSA_ADMIN_POST_CLAIMS_ID_OUTBOUND_SHIPPING_METHOD_ACTION_IDUpdate the shipping method for delivering outbound items in a claim using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update the shipping method for delivering outbound items in a claim using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Confirm a Claim RequestMEDUSA_ADMIN_POST_CLAIMS_ID_REQUESTConfirm a claim request, applying its changes on the associated order.Connection
Confirm a claim request, applying its changes on the associated order.
Authentication
Connected account requiredTags
Create CollectionMEDUSA_ADMIN_POST_COLLECTIONSCreate a collection.Connection
Create a collection.
Authentication
Connected account requiredTags
Update a CollectionMEDUSA_ADMIN_POST_COLLECTIONS_IDUpdate a collection's details.Connection
Update a collection's details.
Authentication
Connected account requiredTags
Manage Products of a CollectionMEDUSA_ADMIN_POST_COLLECTIONS_ID_PRODUCTSManage the products of a collection by adding or removing them from the collection.Connection
Manage the products of a collection by adding or removing them from the collection.
Authentication
Connected account requiredTags
Create Customer GroupMEDUSA_ADMIN_POST_CUSTOMER_GROUPSCreate a customer group.Connection
Create a customer group.
Authentication
Connected account requiredTags
Update a Customer GroupMEDUSA_ADMIN_POST_CUSTOMER_GROUPS_IDUpdate a customer group's details.Connection
Update a customer group's details.
Authentication
Connected account requiredTags
Manage Customers of a Customer GroupMEDUSA_ADMIN_POST_CUSTOMER_GROUPS_ID_CUSTOMERSManage the customers of a group to add or remove them from the group.Connection
Manage the customers of a group to add or remove them from the group.
Authentication
Connected account requiredTags
Create CustomerMEDUSA_ADMIN_POST_CUSTOMERSCreate a customer.Connection
Create a customer.
Authentication
Connected account requiredTags
Update a CustomerMEDUSA_ADMIN_POST_CUSTOMERS_IDUpdate a customer's details.Connection
Update a customer's details.
Authentication
Connected account requiredTags
Add a Customer AddressMEDUSA_ADMIN_POST_CUSTOMERS_ID_ADDRESSESAdd an address to a customer.Connection
Add an address to a customer.
Authentication
Connected account requiredTags
Update a Customer's AddressMEDUSA_ADMIN_POST_CUSTOMERS_ID_ADDRESSES_ADDRESS_IDUpdate a customer address's details.Connection
Update a customer address's details.
Authentication
Connected account requiredTags
Manage Customer Groups of CustomerMEDUSA_ADMIN_POST_CUSTOMERS_ID_CUSTOMER_GROUPSManage the customer groups of a customer, adding or removing the customer from those groups.Connection
Manage the customer groups of a customer, adding or removing the customer from those groups.
Authentication
Connected account requiredTags
Create Draft OrderMEDUSA_ADMIN_POST_DRAFT_ORDERSCreate a draft order. This creates an order with the `is_draft_order` property enabled. You can later convert the draft order to an order.Connection
Create a draft order. This creates an order with the `is_draft_order` property enabled. You can later convert the draft order to an order.
Authentication
Connected account requiredTags
Update a Draft OrderMEDUSA_ADMIN_POST_DRAFT_ORDERS_IDUpdate a draft order's details. This doesn't include updating the draft order's items, shipping methods, or promotions. To update those, you need to create an edit that you can later request or confirm.Connection
Update a draft order's details. This doesn't include updating the draft order's items, shipping methods, or promotions. To update those, you need to create an edit that you can later request or confirm.
Authentication
Connected account requiredTags
Convert a Draft Order to an OrderMEDUSA_ADMIN_POST_DRAFT_ORDERS_ID_CONVERT_TO_ORDERConvert a draft order to an order. This will finalize the draft order and create a new order with the same details.Connection
Convert a draft order to an order. This will finalize the draft order and create a new order with the same details.
Authentication
Connected account requiredTags
Create a Draft Order EditMEDUSA_ADMIN_POST_DRAFT_ORDERS_ID_EDITCreate an edit on a draft order. This will allow you to make changes to the draft order's items, shipping methods, or promotions. Once you've made the necessar changes, you can later either request the edit (which requires a confirmation from the customer), or force-confirm the edit.Connection
Create an edit on a draft order. This will allow you to make changes to the draft order's items, shipping methods, or promotions. Once you've made the necessar changes, you can later either request the edit (which requires a confirmation from the customer), or force-confirm the edit.
Authentication
Connected account requiredTags
Confirm an Edit on a Draft OrderMEDUSA_ADMIN_POST_DRAFT_ORDERS_ID_EDIT_CONFIRMConfirm an edit on a draft order. This will apply the changes made to the draft order.Connection
Confirm an edit on a draft order. This will apply the changes made to the draft order.
Authentication
Connected account requiredTags
Add Item to Draft Order EditMEDUSA_ADMIN_POST_DRAFT_ORDERS_ID_EDIT_ITEMSAdd an item to a draft order edit.Connection
Add an item to a draft order edit.
Authentication
Connected account requiredTags
Update New Item in Draft Order EditMEDUSA_ADMIN_POST_DRAFT_ORDERS_ID_EDIT_ITEMS_ACTION_IDUpdate a new item that was added to a draft order edit by the ID of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update a new item that was added to a draft order edit by the ID of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Update Existing Item in Draft Order EditMEDUSA_ADMIN_POST_DRAFT_ORDERS_ID_EDIT_ITEMS_ITEM_ITEM_IDUpdate an existing item in a draft order edit.Connection
Update an existing item in a draft order edit.
Authentication
Connected account requiredTags
Add Promotions to Draft Order EditMEDUSA_ADMIN_POST_DRAFT_ORDERS_ID_EDIT_PROMOTIONSAdd promotions to a draft order edit.Connection
Add promotions to a draft order edit.
Authentication
Connected account requiredTags
Request Edit on Draft OrderMEDUSA_ADMIN_POST_DRAFT_ORDERS_ID_EDIT_REQUESTChange the status of a draft order's edit to be requested. Later, the edit can be confirmed or canceled.Connection
Change the status of a draft order's edit to be requested. Later, the edit can be confirmed or canceled.
Authentication
Connected account requiredTags
Add Shipping Method to Draft Order EditMEDUSA_ADMIN_POST_DRAFT_ORDERS_ID_EDIT_SHIPPING_METHODSAdd a shipping method to a draft order edit.Connection
Add a shipping method to a draft order edit.
Authentication
Connected account requiredTags
Update New Shipping Method in Draft Order EditMEDUSA_ADMIN_POST_DRAFT_ORDERS_ID_EDIT_SHIPPING_METHODS_ACTION_IDUpdate a new shipping method that was added to a draft order edit using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update a new shipping method that was added to a draft order edit using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Update Existing Shipping Method in Draft Order EditMEDUSA_ADMIN_POST_DRAFT_ORDERS_ID_EDIT_SHIPPING_METHODS_METHOD_METHOD_IDUpdate an existing shipping method in a draft order edit.Connection
Update an existing shipping method in a draft order edit.
Authentication
Connected account requiredTags
Create ExchangeMEDUSA_ADMIN_POST_EXCHANGESCreate an exchange request. Its changes aren't applied on the order until the exchange is confirmed.Connection
Create an exchange request. Its changes aren't applied on the order until the exchange is confirmed.
Authentication
Connected account requiredTags
Cancel an ExchangeMEDUSA_ADMIN_POST_EXCHANGES_ID_CANCELCancel an exchange and its associated return.Connection
Cancel an exchange and its associated return.
Authentication
Connected account requiredTags
Add Inbound Items to an ExchangeMEDUSA_ADMIN_POST_EXCHANGES_ID_INBOUND_ITEMSAdd inbound (or return) items to an exchange. These inbound items will have the action `RETURN_ITEM`.Connection
Add inbound (or return) items to an exchange. These inbound items will have the action `RETURN_ITEM`.
Authentication
Connected account requiredTags
Update an Inbount Item of an ExchangeMEDUSA_ADMIN_POST_EXCHANGES_ID_INBOUND_ITEMS_ACTION_IDUpdate an inbound (or return) item from an exchange using the `ID` of the item's `RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update an inbound (or return) item from an exchange using the `ID` of the item's `RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Add an Inbound Shipping Method to an ExchangeMEDUSA_ADMIN_POST_EXCHANGES_ID_INBOUND_SHIPPING_METHODAdd an inbound (or return) shipping method to an exchange. The inbound shipping method will have a `SHIPPING_ADD` action.Connection
Add an inbound (or return) shipping method to an exchange. The inbound shipping method will have a `SHIPPING_ADD` action.
Authentication
Connected account requiredTags
Update Inbound Shipping Method of an ExchangeMEDUSA_ADMIN_POST_EXCHANGES_ID_INBOUND_SHIPPING_METHOD_ACTION_IDUpdate the shipping method for returning items in the exchange using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update the shipping method for returning items in the exchange using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Add Outbound Items to ExchangeMEDUSA_ADMIN_POST_EXCHANGES_ID_OUTBOUND_ITEMSAdd outbound (or new) items to an exchange. These outbound items will have the action `ITEM_ADD`.Connection
Add outbound (or new) items to an exchange. These outbound items will have the action `ITEM_ADD`.
Authentication
Connected account requiredTags
Update Outbound Item of an ExchangeMEDUSA_ADMIN_POST_EXCHANGES_ID_OUTBOUND_ITEMS_ACTION_IDUpdate an outbound (or new) item from an exchange using the `ID` of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update an outbound (or new) item from an exchange using the `ID` of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Add Outbound Shipping Method to ExchangeMEDUSA_ADMIN_POST_EXCHANGES_ID_OUTBOUND_SHIPPING_METHODAdd an outbound shipping method to an exchange. The outbound shipping method will have a `SHIPPING_ADD` action.Connection
Add an outbound shipping method to an exchange. The outbound shipping method will have a `SHIPPING_ADD` action.
Authentication
Connected account requiredTags
Update Outbound Shipping Method of ExchangeMEDUSA_ADMIN_POST_EXCHANGES_ID_OUTBOUND_SHIPPING_METHOD_ACTION_IDUpdate the shipping method for delivering outbound items in the exchange using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update the shipping method for delivering outbound items in the exchange using the `ID` of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Confirm an ExchangeMEDUSA_ADMIN_POST_EXCHANGES_ID_REQUESTConfirm an exchange request, applying its changes on the associated order.Connection
Confirm an exchange request, applying its changes on the associated order.
Authentication
Connected account requiredTags
Add a Service Zone to a Fulfillment SetMEDUSA_ADMIN_POST_FULFILLMENT_SETS_ID_SERVICE_ZONESAdd a service zone to a fulfillment set.Connection
Add a service zone to a fulfillment set.
Authentication
Connected account requiredTags
Update the Service Zone of a Fulfillment SetMEDUSA_ADMIN_POST_FULFILLMENT_SETS_ID_SERVICE_ZONES_ZONE_IDUpdate the details of a service zone in a fulfillment set.Connection
Update the details of a service zone in a fulfillment set.
Authentication
Connected account requiredTags
Create FulfillmentMEDUSA_ADMIN_POST_FULFILLMENTSCreate a fulfillment for an order, return, exchange, and more.Connection
Create a fulfillment for an order, return, exchange, and more.
Authentication
Connected account requiredTags
Cancel a FulfillmentMEDUSA_ADMIN_POST_FULFILLMENTS_ID_CANCELCancel a fulfillment. The fulfillment can't be shipped or delivered. To cancel the fulfillment, the `cancelFulfillment` method of the associated fulfillment provider is used.Connection
Cancel a fulfillment. The fulfillment can't be shipped or delivered. To cancel the fulfillment, the `cancelFulfillment` method of the associated fulfillment provider is used.
Authentication
Connected account requiredTags
Create a Shipment for a FulfillmentMEDUSA_ADMIN_POST_FULFILLMENTS_ID_SHIPMENTCreate a shipment for a fulfillment. The fulfillment must not be shipped or canceled.Connection
Create a shipment for a fulfillment. The fulfillment must not be shipped or canceled.
Authentication
Connected account requiredTags
Create Gift CardMEDUSA_ADMIN_POST_GIFT_CARDSCreate a gift card.Connection
Create a gift card.
Authentication
Connected account requiredTags
Update a Gift CardMEDUSA_ADMIN_POST_GIFT_CARDS_IDUpdate a gift card's details.Connection
Update a gift card's details.
Authentication
Connected account requiredTags
Trigger Index SyncMEDUSA_ADMIN_POST_INDEX_SYNCTrigger reindexing or re-ingestion of the Index Module.Connection
Trigger reindexing or re-ingestion of the Index Module.
Authentication
Connected account requiredTags
Create Inventory ItemMEDUSA_ADMIN_POST_INVENTORY_ITEMSCreate an inventory item.Connection
Create an inventory item.
Authentication
Connected account requiredTags
Export Inventory ItemsMEDUSA_ADMIN_POST_INVENTORY_ITEMS_EXPORTStart an inventory items export process to retrieve a CSV of exported inventory items. You'll receive in the response the transaction ID of the workflow generating the CSV file. To check the status of the execution, send a GET request to `/admin/workflows-executions/export-inventory-items/:transaction-id`. Once the execution finishes successfully, a notification is created for the export. You can retrieve the notifications using the `/admin/notification` API route to retrieve the file's download URL.Connection
Start an inventory items export process to retrieve a CSV of exported inventory items. You'll receive in the response the transaction ID of the workflow generating the CSV file. To check the status of the execution, send a GET request to `/admin/workflows-executions/export-inventory-items/:transaction-id`. Once the execution finishes successfully, a notification is created for the export. You can retrieve the notifications using the `/admin/notification` API route to retrieve the file's download URL.
Authentication
Connected account requiredTags
Update an Inventory ItemMEDUSA_ADMIN_POST_INVENTORY_ITEMS_IDUpdate an inventory item's details.Connection
Update an inventory item's details.
Authentication
Connected account requiredTags
Create Inventory Level for Inventory ItemMEDUSA_ADMIN_POST_INVENTORY_ITEMS_ID_LOCATION_LEVELSCreate an inventory level for an inventory item.Connection
Create an inventory level for an inventory item.
Authentication
Connected account requiredTags
Manage Inventory Levels of Inventory ItemMEDUSA_ADMIN_POST_INVENTORY_ITEMS_ID_LOCATION_LEVELS_BATCHManage the inventory levels of an inventory item to create or delete them.Connection
Manage the inventory levels of an inventory item to create or delete them.
Authentication
Connected account requiredTags
Update an Inventory Level of an Inventory ItemMEDUSA_ADMIN_POST_INVENTORY_ITEMS_ID_LOCATION_LEVELS_LOCATION_IDUpdates the details of an inventory item's inventory level using its associated location ID.Connection
Updates the details of an inventory item's inventory level using its associated location ID.
Authentication
Connected account requiredTags
Manage Inventory LevelsMEDUSA_ADMIN_POST_INVENTORY_ITEMS_LOCATION_LEVELS_BATCHManage inventory levels to create, update, or delete them.Connection
Manage inventory levels to create, update, or delete them.
Authentication
Connected account requiredTags
Create InviteMEDUSA_ADMIN_POST_INVITESCreate a invite.Connection
Create a invite.
Authentication
Connected account requiredTags
Accept InviteMEDUSA_ADMIN_POST_INVITES_ACCEPTAccept an invite and create a new user. Since the user isn't created yet, the JWT token used in the authorization header is retrieved from the `/auth/user/emailpass/register` API route (or a provider other than `emailpass`). The user can then authenticate using the `/auth/user/emailpass` API route.Connection
Accept an invite and create a new user. Since the user isn't created yet, the JWT token used in the authorization header is retrieved from the `/auth/user/emailpass/register` API route (or a provider other than `emailpass`). The user can then authenticate using the `/auth/user/emailpass` API route.
Authentication
Connected account requiredTags
Refresh Invite TokenMEDUSA_ADMIN_POST_INVITES_ID_RESENDRefresh the token of an invite.Connection
Refresh the token of an invite.
Authentication
Connected account requiredTags
Add Layout ConfigurationMEDUSA_ADMIN_POST_LAYOUTS_ZONE_CONFIGURATIONAdd a layout configuration for a specific zone. This allows you to customize the layout of the admin dashboard for that zone, including the arrangement of widgets and other UI elements.Connection
Add a layout configuration for a specific zone. This allows you to customize the layout of the admin dashboard for that zone, including the arrangement of widgets and other UI elements.
Authentication
Connected account requiredTags
Update an Order ChangeMEDUSA_ADMIN_POST_ORDER_CHANGES_IDUpdate an order change's details. An order change can be an exchange, claim, or edit. For example, you can edit whether an exchange carries over the parent order's promotion.Connection
Update an order change's details. An order change can be an exchange, claim, or edit. For example, you can edit whether an exchange carries over the parent order's promotion.
Authentication
Connected account requiredTags
Create Order EditMEDUSA_ADMIN_POST_ORDER_EDITSCreate an order edit.Connection
Create an order edit.
Authentication
Connected account requiredTags
Confirm Order EditMEDUSA_ADMIN_POST_ORDER_EDITS_ID_CONFIRMConfirm an order edit request and apply the changes on the order.Connection
Confirm an order edit request and apply the changes on the order.
Authentication
Connected account requiredTags
Add Items to Order EditMEDUSA_ADMIN_POST_ORDER_EDITS_ID_ITEMSAdd new items to an order edit. These items will have the action `ITEM_ADD`.Connection
Add new items to an order edit. These items will have the action `ITEM_ADD`.
Authentication
Connected account requiredTags
Update an Item in an Order EditMEDUSA_ADMIN_POST_ORDER_EDITS_ID_ITEMS_ACTION_IDUpdate an added item in the order edit by the ID of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update an added item in the order edit by the ID of the item's `ITEM_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Update Order Item Quantity of Order EditMEDUSA_ADMIN_POST_ORDER_EDITS_ID_ITEMS_ITEM_ITEM_IDUpdate an existing order item's quantity of an order edit. You can also use this API route to remove an item from an order by setting its quantity to `0`.Connection
Update an existing order item's quantity of an order edit. You can also use this API route to remove an item from an order by setting its quantity to `0`.
Authentication
Connected account requiredTags
Request Order EditMEDUSA_ADMIN_POST_ORDER_EDITS_ID_REQUESTChange the status of an active order edit to requested.Connection
Change the status of an active order edit to requested.
Authentication
Connected account requiredTags
Add Shipping Method to Order EditMEDUSA_ADMIN_POST_ORDER_EDITS_ID_SHIPPING_METHODAdd a shipping method to an exchange. The shipping method will have a `SHIPPING_ADD` action.Connection
Add a shipping method to an exchange. The shipping method will have a `SHIPPING_ADD` action.
Authentication
Connected account requiredTags
Update Shipping Method of an Order EditMEDUSA_ADMIN_POST_ORDER_EDITS_ID_SHIPPING_METHOD_ACTION_IDUpdate a shipping method in the order edit by the ID of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update a shipping method in the order edit by the ID of the method's `SHIPPING_ADD` action. Every shipping method has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Export OrdersMEDUSA_ADMIN_POST_ORDERS_EXPORTStart an order export process to retrieve a CSV of exported orders. You'll receive in the response the transaction ID of the workflow generating the CSV file. To check the status of the execution, send a GET request to `/admin/workflows-executions/export-orders/:transaction-id`. Once the execution finishes successfully, a notification is created for the export. You can retrieve the notifications using the `/admin/notification` API route to retrieve the file's download URL.Connection
Start an order export process to retrieve a CSV of exported orders. You'll receive in the response the transaction ID of the workflow generating the CSV file. To check the status of the execution, send a GET request to `/admin/workflows-executions/export-orders/:transaction-id`. Once the execution finishes successfully, a notification is created for the export. You can retrieve the notifications using the `/admin/notification` API route to retrieve the file's download URL.
Authentication
Connected account requiredTags
Update OrderMEDUSA_ADMIN_POST_ORDERS_IDUpdate an order's details. Updating the order's shipping or billing address doesn't recalculate the order's taxes or totals; the existing tax lines are preserved as-is. You also can't change the address's `country_code`.Connection
Update an order's details. Updating the order's shipping or billing address doesn't recalculate the order's taxes or totals; the existing tax lines are preserved as-is. You also can't change the address's `country_code`.
Authentication
Connected account requiredTags
Archive an OrderMEDUSA_ADMIN_POST_ORDERS_ID_ARCHIVEChange the status of an order to archived.Connection
Change the status of an order to archived.
Authentication
Connected account requiredTags
Cancel OrderMEDUSA_ADMIN_POST_ORDERS_ID_CANCELCancel an order. The cancelation fails if: - The order has captured payments. - The order has refund payments. - The order has fulfillments that aren't canceled.Connection
Cancel an order. The cancelation fails if: - The order has captured payments. - The order has refund payments. - The order has fulfillments that aren't canceled.
Authentication
Connected account requiredTags
Complete OrderMEDUSA_ADMIN_POST_ORDERS_ID_COMPLETEMark an order as completed.Connection
Mark an order as completed.
Authentication
Connected account requiredTags
Create Credit Line for OrderMEDUSA_ADMIN_POST_ORDERS_ID_CREDIT_LINESCreate a credit line for an order.Connection
Create a credit line for an order.
Authentication
Connected account requiredTags
Create an Order FulfillmentMEDUSA_ADMIN_POST_ORDERS_ID_FULFILLMENTSCreate a fulfillment for an order. The creation fails if the order is canceled.Connection
Create a fulfillment for an order. The creation fails if the order is canceled.
Authentication
Connected account requiredTags
Cancel FulfillmentMEDUSA_ADMIN_POST_ORDERS_ID_FULFILLMENTS_FULFILLMENT_ID_CANCELCancel an order's fulfillment. The fulfillment can't be canceled if it's shipped.Connection
Cancel an order's fulfillment. The fulfillment can't be canceled if it's shipped.
Authentication
Connected account requiredTags
Mark a Fulfillment as Delivered.MEDUSA_ADMIN_POST_ORDERS_ID_FULFILLMENTS_FULFILLMENT_ID_MARK_AS_DELIVEREDMark an order's fulfillment as delivered.Connection
Mark an order's fulfillment as delivered.
Authentication
Connected account requiredTags
Create Shipment for an Order's FulfillmentMEDUSA_ADMIN_POST_ORDERS_ID_FULFILLMENTS_FULFILLMENT_ID_SHIPMENTSCreate a shipment for an order's fulfillment.Connection
Create a shipment for an order's fulfillment.
Authentication
Connected account requiredTags
Authorize Payment SessionMEDUSA_ADMIN_POST_ORDERS_ID_PAYMENT_SESSIONS_AUTHORIZEAuthorize a payment session for an order. This is useful for orders created from draft orders.Connection
Authorize a payment session for an order. This is useful for orders created from draft orders.
Authentication
Connected account requiredTags
Request Order TransferMEDUSA_ADMIN_POST_ORDERS_ID_TRANSFERRequest an order to be transfered to another customer. The transfer is confirmed by sending a request to the [Accept Order Transfer](https://docs.medusajs.com/api/store#orders_postordersidtransferaccept) Store API route.Connection
Request an order to be transfered to another customer. The transfer is confirmed by sending a request to the [Accept Order Transfer](https://docs.medusajs.com/api/store#orders_postordersidtransferaccept) Store API route.
Authentication
Connected account requiredTags
Cancel Transfer RequestMEDUSA_ADMIN_POST_ORDERS_ID_TRANSFER_CANCELCancel a request to transfer an order to another customer.Connection
Cancel a request to transfer an order to another customer.
Authentication
Connected account requiredTags
Transfer Order to Guest CustomerMEDUSA_ADMIN_POST_ORDERS_ID_TRANSFER_GUESTTransfer an order to a guest customer. This is useful when the order email was incorrectly entered and you want to set it to a guest customer. The order will be transferred to a new guest customer with the provided email. For transferring orders to registered customer, check out the [Request Order Transfer](https://docs.medusajs.com/api/admin#orders_postordersidtransfer) API route instead.Connection
Transfer an order to a guest customer. This is useful when the order email was incorrectly entered and you want to set it to a guest customer. The order will be transferred to a new guest customer with the provided email. For transferring orders to registered customer, check out the [Request Order Transfer](https://docs.medusajs.com/api/admin#orders_postordersidtransfer) API route instead.
Authentication
Connected account requiredTags
Create Payment CollectionMEDUSA_ADMIN_POST_PAYMENT_COLLECTIONSCreate a payment collection.Connection
Create a payment collection.
Authentication
Connected account requiredTags
Mark a Payment Collection as PaidMEDUSA_ADMIN_POST_PAYMENT_COLLECTIONS_ID_MARK_AS_PAIDMark a payment collection as paid. This creates and authorizes a payment session, then capture its payment, using the manual payment provider.Connection
Mark a payment collection as paid. This creates and authorizes a payment session, then capture its payment, using the manual payment provider.
Authentication
Connected account requiredTags
Initialize Payment Session in Payment CollectionMEDUSA_ADMIN_POST_PAYMENT_COLLECTIONS_ID_PAYMENT_SESSIONSInitialize a Payment Session in a payment collection. This is useful for orders placed outside the checkout flow, such as draft orders, or when a payment session needs to be re-initialized for an existing payment collection.Connection
Initialize a Payment Session in a payment collection. This is useful for orders placed outside the checkout flow, such as draft orders, or when a payment session needs to be re-initialized for an existing payment collection.
Authentication
Connected account requiredTags
Capture PaymentMEDUSA_ADMIN_POST_PAYMENTS_ID_CAPTURECapture an amount of a payment. This uses the `capturePayment` method of the payment provider associated with the payment's collection.Connection
Capture an amount of a payment. This uses the `capturePayment` method of the payment provider associated with the payment's collection.
Authentication
Connected account requiredTags
Refund PaymentMEDUSA_ADMIN_POST_PAYMENTS_ID_REFUNDRefund an amount of a payment. This uses the `refundPayment` method of the payment provider associated with the payment's collection.Connection
Refund an amount of a payment. This uses the `refundPayment` method of the payment provider associated with the payment's collection.
Authentication
Connected account requiredTags
Create Price ListMEDUSA_ADMIN_POST_PRICE_LISTSCreate a price list.Connection
Create a price list.
Authentication
Connected account requiredTags
Update a Price ListMEDUSA_ADMIN_POST_PRICE_LISTS_IDUpdate a price list's details.Connection
Update a price list's details.
Authentication
Connected account requiredTags
Manage Prices in Price ListMEDUSA_ADMIN_POST_PRICE_LISTS_ID_PRICES_BATCHManage the prices of a price list to create, update, or delete them.Connection
Manage the prices of a price list to create, update, or delete them.
Authentication
Connected account requiredTags
Remove Products from Price ListMEDUSA_ADMIN_POST_PRICE_LISTS_ID_PRODUCTSRemove products from a price list.Connection
Remove products from a price list.
Authentication
Connected account requiredTags
Create Price PreferenceMEDUSA_ADMIN_POST_PRICE_PREFERENCESCreate a price preference.Connection
Create a price preference.
Authentication
Connected account requiredTags
Update a Price PreferenceMEDUSA_ADMIN_POST_PRICE_PREFERENCES_IDUpdate a price preference's details.Connection
Update a price preference's details.
Authentication
Connected account requiredTags
Create Product CategoryMEDUSA_ADMIN_POST_PRODUCT_CATEGORIESCreate a product category.Connection
Create a product category.
Authentication
Connected account requiredTags
Update a Product CategoryMEDUSA_ADMIN_POST_PRODUCT_CATEGORIES_IDUpdate a product category's details.Connection
Update a product category's details.
Authentication
Connected account requiredTags
Manage Products in Product CategoryMEDUSA_ADMIN_POST_PRODUCT_CATEGORIES_ID_PRODUCTSManage products of a category to add or remove them.Connection
Manage products of a category to add or remove them.
Authentication
Connected account requiredTags
Create Product OptionMEDUSA_ADMIN_POST_PRODUCT_OPTIONSCreate a product option.Connection
Create a product option.
Authentication
Connected account requiredTags
Update a Product OptionMEDUSA_ADMIN_POST_PRODUCT_OPTIONS_IDUpdate a product option's details.Connection
Update a product option's details.
Authentication
Connected account requiredTags
Update Product Option ValueMEDUSA_ADMIN_POST_PRODUCT_OPTIONS_ID_VALUES_VALUE_IDUpdate a product option value's details.Connection
Update a product option value's details.
Authentication
Connected account requiredTags
Create Product TagMEDUSA_ADMIN_POST_PRODUCT_TAGSCreate a product tag.Connection
Create a product tag.
Authentication
Connected account requiredTags
Update a Product TagMEDUSA_ADMIN_POST_PRODUCT_TAGS_IDUpdate a product tag's details.Connection
Update a product tag's details.
Authentication
Connected account requiredTags
Create Product TypeMEDUSA_ADMIN_POST_PRODUCT_TYPESCreate a product type.Connection
Create a product type.
Authentication
Connected account requiredTags
Update a Product TypeMEDUSA_ADMIN_POST_PRODUCT_TYPES_IDUpdate a product type's details.Connection
Update a product type's details.
Authentication
Connected account requiredTags
Create ProductMEDUSA_ADMIN_POST_PRODUCTSCreate a product.Connection
Create a product.
Authentication
Connected account requiredTags
Manage ProductsMEDUSA_ADMIN_POST_PRODUCTS_BATCHManage products to create, update, or delete them.Connection
Manage products to create, update, or delete them.
Authentication
Connected account requiredTags
Export ProductsMEDUSA_ADMIN_POST_PRODUCTS_EXPORTStart a product export process to retrieve a CSV of exported products. You'll receive in the response the transaction ID of the workflow generating the CSV file. To check the status of the execution, send a GET request to `/admin/workflows-executions/export-products/:transaction-id`. Once the execution finishes successfully, a notification is created for the export. You can retrieve the notifications using the `/admin/notification` API route to retrieve the file's download URL.Connection
Start a product export process to retrieve a CSV of exported products. You'll receive in the response the transaction ID of the workflow generating the CSV file. To check the status of the execution, send a GET request to `/admin/workflows-executions/export-products/:transaction-id`. Once the execution finishes successfully, a notification is created for the export. You can retrieve the notifications using the `/admin/notification` API route to retrieve the file's download URL.
Authentication
Connected account requiredTags
Update a ProductMEDUSA_ADMIN_POST_PRODUCTS_IDUpdate a product's details.Connection
Update a product's details.
Authentication
Connected account requiredTags
Manage Variants of Product ImageMEDUSA_ADMIN_POST_PRODUCTS_ID_IMAGES_IMAGE_ID_VARIANTS_BATCHManage the association between product variants and a product image. You can add or remove associations between variants and the image.Connection
Manage the association between product variants and a product image. You can add or remove associations between variants and the image.
Authentication
Connected account requiredTags
Add Options to ProductMEDUSA_ADMIN_POST_PRODUCTS_ID_OPTIONS_BATCHAdd a list of options to a product.Connection
Add a list of options to a product.
Authentication
Connected account requiredTags
Create a Product VariantMEDUSA_ADMIN_POST_PRODUCTS_ID_VARIANTSCreate a variant for a product.Connection
Create a variant for a product.
Authentication
Connected account requiredTags
Manage Variants in a ProductMEDUSA_ADMIN_POST_PRODUCTS_ID_VARIANTS_BATCHManage variants in a product to create, update, or delete them.Connection
Manage variants in a product to create, update, or delete them.
Authentication
Connected account requiredTags
Manage Variants Inventory in a ProductMEDUSA_ADMIN_POST_PRODUCTS_ID_VARIANTS_INVENTORY_ITEMS_BATCHManage a product's variant's inventoris to associate them with inventory items, update their inventory items, or delete their association with inventory items.Connection
Manage a product's variant's inventoris to associate them with inventory items, update their inventory items, or delete their association with inventory items.
Authentication
Connected account requiredTags
Update a Product VariantMEDUSA_ADMIN_POST_PRODUCTS_ID_VARIANTS_VARIANT_IDUpdate a variant's details.Connection
Update a variant's details.
Authentication
Connected account requiredTags
Manage Images of Product VariantMEDUSA_ADMIN_POST_PRODUCTS_ID_VARIANTS_VARIANT_ID_IMAGES_BATCHManage the association between product images and a product variant. You can add or remove associations between images and the variant.Connection
Manage the association between product images and a product variant. You can add or remove associations between images and the variant.
Authentication
Connected account requiredTags
Associate Variant with Inventory ItemMEDUSA_ADMIN_POST_PRODUCTS_ID_VARIANTS_VARIANT_ID_INVENTORY_ITEMSAssociate with a product variant an inventory item that manages its inventory details.Connection
Associate with a product variant an inventory item that manages its inventory details.
Authentication
Connected account requiredTags
Update Product Variant's Inventory DetailsMEDUSA_ADMIN_POST_PRODUCTS_ID_VARIANTS_VARIANT_ID_INVENTORY_ITEMS_INVENTORY_ITEM_IDUpdate the inventory item that manages the inventory details of a product variant.Connection
Update the inventory item that manages the inventory details of a product variant.
Authentication
Connected account requiredTags
Create Product ImportMEDUSA_ADMIN_POST_PRODUCTS_IMPORTCreate a new product import process. The products aren't imported until the import is confirmed with the `/admin/products/:transaction-id/import` API route.Connection
Create a new product import process. The products aren't imported until the import is confirmed with the `/admin/products/:transaction-id/import` API route.
Authentication
Connected account requiredTags
Confirm Product ImportMEDUSA_ADMIN_POST_PRODUCTS_IMPORT_TRANSACTION_ID_CONFIRMConfirm that a created product import should start importing the products into Medusa.Connection
Confirm that a created product import should start importing the products into Medusa.
Authentication
Connected account requiredTags
Create Product ImportMEDUSA_ADMIN_POST_PRODUCTS_IMPORTSCreate a new product import process. The products aren't imported until the import is confirmed with the `/admin/products/:transaction-id/imports` API route.Connection
Create a new product import process. The products aren't imported until the import is confirmed with the `/admin/products/:transaction-id/imports` API route.
Authentication
Connected account requiredTags
Confirm Product ImportMEDUSA_ADMIN_POST_PRODUCTS_IMPORTS_TRANSACTION_ID_CONFIRMConfirm that a created product import should start importing the products into Medusa.Connection
Confirm that a created product import should start importing the products into Medusa.
Authentication
Connected account requiredTags
Create PromotionMEDUSA_ADMIN_POST_PROMOTIONSCreate a promotion.Connection
Create a promotion.
Authentication
Connected account requiredTags
Update a PromotionMEDUSA_ADMIN_POST_PROMOTIONS_IDUpdate a promotion's details.Connection
Update a promotion's details.
Authentication
Connected account requiredTags
Manage the Buy Rules of a PromotionMEDUSA_ADMIN_POST_PROMOTIONS_ID_BUY_RULES_BATCHManage the buy rules of a `buyget` promotion to create, update, or delete them.Connection
Manage the buy rules of a `buyget` promotion to create, update, or delete them.
Authentication
Connected account requiredTags
Manage a Promotion's RulesMEDUSA_ADMIN_POST_PROMOTIONS_ID_RULES_BATCHManage the rules of a promotion to create, update, or delete them.Connection
Manage the rules of a promotion to create, update, or delete them.
Authentication
Connected account requiredTags
Manage Target Rules of a PromotionMEDUSA_ADMIN_POST_PROMOTIONS_ID_TARGET_RULES_BATCHManage the target rules of a promotion to create, update, or delete them.Connection
Manage the target rules of a promotion to create, update, or delete them.
Authentication
Connected account requiredTags
Create Property LabelMEDUSA_ADMIN_POST_PROPERTY_LABELSCreate a property label.Connection
Create a property label.
Authentication
Connected account requiredTags
Create Property LabelMEDUSA_ADMIN_POST_PROPERTY_LABELS_BATCHCreate a property label.Connection
Create a property label.
Authentication
Connected account requiredTags
Update a Property LabelMEDUSA_ADMIN_POST_PROPERTY_LABELS_IDUpdate a property label's details.Connection
Update a property label's details.
Authentication
Connected account requiredTags
Create Refund ReasonMEDUSA_ADMIN_POST_REFUND_REASONSCreate a refund reason.Connection
Create a refund reason.
Authentication
Connected account requiredTags
Update a Refund ReasonMEDUSA_ADMIN_POST_REFUND_REASONS_IDUpdate a refund reason's details.Connection
Update a refund reason's details.
Authentication
Connected account requiredTags
Create RegionMEDUSA_ADMIN_POST_REGIONSCreate a region.Connection
Create a region.
Authentication
Connected account requiredTags
Update a RegionMEDUSA_ADMIN_POST_REGIONS_IDUpdate a region's details.Connection
Update a region's details.
Authentication
Connected account requiredTags
Create ReservationMEDUSA_ADMIN_POST_RESERVATIONSCreate a reservation.Connection
Create a reservation.
Authentication
Connected account requiredTags
Update a ReservationMEDUSA_ADMIN_POST_RESERVATIONS_IDUpdate a reservation's details.Connection
Update a reservation's details.
Authentication
Connected account requiredTags
Create Return ReasonMEDUSA_ADMIN_POST_RETURN_REASONSCreate a return reason.Connection
Create a return reason.
Authentication
Connected account requiredTags
Update a Return ReasonMEDUSA_ADMIN_POST_RETURN_REASONS_IDUpdate a return reason's details.Connection
Update a return reason's details.
Authentication
Connected account requiredTags
Create ReturnMEDUSA_ADMIN_POST_RETURNSCreate a return. The return can later be requested or confirmed.Connection
Create a return. The return can later be requested or confirmed.
Authentication
Connected account requiredTags
Update a ReturnMEDUSA_ADMIN_POST_RETURNS_IDUpdate a return's details.Connection
Update a return's details.
Authentication
Connected account requiredTags
Cancel a return.MEDUSA_ADMIN_POST_RETURNS_ID_CANCELCancel a return.Connection
Cancel a return.
Authentication
Connected account requiredTags
Add Damaged Items to ReturnMEDUSA_ADMIN_POST_RETURNS_ID_DISMISS_ITEMSAdd damaged items, whose quantity is to be dismissed, to a return. These items will have the action `RECEIVE_DAMAGED_RETURN_ITEM`.Connection
Add damaged items, whose quantity is to be dismissed, to a return. These items will have the action `RECEIVE_DAMAGED_RETURN_ITEM`.
Authentication
Connected account requiredTags
Update Damaged Item of ReturnMEDUSA_ADMIN_POST_RETURNS_ID_DISMISS_ITEMS_ACTION_IDUpdate a damaged item, whose quantity is to be dismissed, in the return by the ID of the item's `RECEIVE_DAMAGED_RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property. return.Connection
Update a damaged item, whose quantity is to be dismissed, in the return by the ID of the item's `RECEIVE_DAMAGED_RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property. return.
Authentication
Connected account requiredTags
Start Return ReceivalMEDUSA_ADMIN_POST_RETURNS_ID_RECEIVEStart a return receival process to be later confirmed using the `/admin/returns/:id/receive/confirm` API route.Connection
Start a return receival process to be later confirmed using the `/admin/returns/:id/receive/confirm` API route.
Authentication
Connected account requiredTags
Confirm Return ReceivalMEDUSA_ADMIN_POST_RETURNS_ID_RECEIVE_CONFIRMConfirm that a return has been received. This updates the quantity of the items received, if not damaged, and reflects the changes on the order.Connection
Confirm that a return has been received. This updates the quantity of the items received, if not damaged, and reflects the changes on the order.
Authentication
Connected account requiredTags
Add Received Items to ReturnMEDUSA_ADMIN_POST_RETURNS_ID_RECEIVE_ITEMSAdd received items in a return. These items will have the action `RECEIVE_RETURN_ITEM`.Connection
Add received items in a return. These items will have the action `RECEIVE_RETURN_ITEM`.
Authentication
Connected account requiredTags
Update a Received Item in a ReturnMEDUSA_ADMIN_POST_RETURNS_ID_RECEIVE_ITEMS_ACTION_IDUpdate a received item in the return by the ID of the item's `RECEIVE_RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property. return.Connection
Update a received item in the return by the ID of the item's `RECEIVE_RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property. return.
Authentication
Connected account requiredTags
Confirm Return RequestMEDUSA_ADMIN_POST_RETURNS_ID_REQUESTConfirm a requested return. The changes are applied on the inventory quantity and the order only after the return has been confirmed as received using the `/admin/returns/:id/received/confirm`.Connection
Confirm a requested return. The changes are applied on the inventory quantity and the order only after the return has been confirmed as received using the `/admin/returns/:id/received/confirm`.
Authentication
Connected account requiredTags
Add Requested Items to ReturnMEDUSA_ADMIN_POST_RETURNS_ID_REQUEST_ITEMSAdd items that are requested to be returned. These items will have the action `RETURN_ITEM`.Connection
Add items that are requested to be returned. These items will have the action `RETURN_ITEM`.
Authentication
Connected account requiredTags
Update Requested Item in ReturnMEDUSA_ADMIN_POST_RETURNS_ID_REQUEST_ITEMS_ACTION_IDUpdate a requested item to be returned by the ID of the item's `RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property. return.Connection
Update a requested item to be returned by the ID of the item's `RETURN_ITEM` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property. return.
Authentication
Connected account requiredTags
Add a Shipping Method to a ReturnMEDUSA_ADMIN_POST_RETURNS_ID_SHIPPING_METHODAdd a shipping method to a return. The shipping method will have a `SHIPPING_ADD` action.Connection
Add a shipping method to a return. The shipping method will have a `SHIPPING_ADD` action.
Authentication
Connected account requiredTags
Update a Shipping Method of a ReturnMEDUSA_ADMIN_POST_RETURNS_ID_SHIPPING_METHOD_ACTION_IDUpdate a shipping method of the return by the ID of the item's `SHIPPING_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.Connection
Update a shipping method of the return by the ID of the item's `SHIPPING_ADD` action. Every item has an `actions` property, whose value is an array of actions. You can check the action's name using its `action` property, and use the value of the `id` property.
Authentication
Connected account requiredTags
Create Sales ChannelMEDUSA_ADMIN_POST_SALES_CHANNELSCreate a sales channel.Connection
Create a sales channel.
Authentication
Connected account requiredTags
Update a Sales ChannelMEDUSA_ADMIN_POST_SALES_CHANNELS_IDUpdate a sales channel's details.Connection
Update a sales channel's details.
Authentication
Connected account requiredTags
Manage Products in Sales ChannelMEDUSA_ADMIN_POST_SALES_CHANNELS_ID_PRODUCTSManage products in a sales channel to add or remove them from the channel.Connection
Manage products in a sales channel to add or remove them from the channel.
Authentication
Connected account requiredTags
Create Shipping Option TypeMEDUSA_ADMIN_POST_SHIPPING_OPTION_TYPESCreate a shipping option type.Connection
Create a shipping option type.
Authentication
Connected account requiredTags
Update a Shipping Option TypeMEDUSA_ADMIN_POST_SHIPPING_OPTION_TYPES_IDUpdate a shipping option type's details.Connection
Update a shipping option type's details.
Authentication
Connected account requiredTags
Create Shipping OptionMEDUSA_ADMIN_POST_SHIPPING_OPTIONSCreate a shipping option.Connection
Create a shipping option.
Authentication
Connected account requiredTags
Update a Shipping OptionMEDUSA_ADMIN_POST_SHIPPING_OPTIONS_IDUpdate a shipping option's details. When you provide the `prices` array, it replaces the shipping option's existing flat-rate prices: - A price with a matching `id` is updated. - A price without an `id` is created - Any existing price whose `id` isn't included in the array is deleted. The `rules` you provide for a price similarly replace that price's existing rules, so omit a rule to remove it. Omitting the `prices` property entirely leaves the existing prices unchanged, whereas setting `price_type` to `calculated` removes all flat-rate prices.Connection
Update a shipping option's details. When you provide the `prices` array, it replaces the shipping option's existing flat-rate prices: - A price with a matching `id` is updated. - A price without an `id` is created - Any existing price whose `id` isn't included in the array is deleted. The `rules` you provide for a price similarly replace that price's existing rules, so omit a rule to remove it. Omitting the `prices` property entirely leaves the existing prices unchanged, whereas setting `price_type` to `calculated` removes all flat-rate prices.
Authentication
Connected account requiredTags
Manage the Rules of a Shipping OptionMEDUSA_ADMIN_POST_SHIPPING_OPTIONS_ID_RULES_BATCHManage the rules of a shipping option to create, update, or delete them.Connection
Manage the rules of a shipping option to create, update, or delete them.
Authentication
Connected account requiredTags
Create Shipping ProfileMEDUSA_ADMIN_POST_SHIPPING_PROFILESCreate a shipping profile.Connection
Create a shipping profile.
Authentication
Connected account requiredTags
Update a Shipping ProfileMEDUSA_ADMIN_POST_SHIPPING_PROFILES_IDUpdate a shipping profile's details.Connection
Update a shipping profile's details.
Authentication
Connected account requiredTags
Create Stock LocationMEDUSA_ADMIN_POST_STOCK_LOCATIONSCreate a stock location.Connection
Create a stock location.
Authentication
Connected account requiredTags
Update a Stock LocationMEDUSA_ADMIN_POST_STOCK_LOCATIONS_IDUpdate a stock location's details.Connection
Update a stock location's details.
Authentication
Connected account requiredTags
Manage Fulfillment Providers of a Stock LocationMEDUSA_ADMIN_POST_STOCK_LOCATIONS_ID_FULFILLMENT_PROVIDERSManage the fulfillment providers to add or remove them from a stock location.Connection
Manage the fulfillment providers to add or remove them from a stock location.
Authentication
Connected account requiredTags
Add Fulfillment Set to Stock LocationMEDUSA_ADMIN_POST_STOCK_LOCATIONS_ID_FULFILLMENT_SETSCreate and add a fulfillment set to a stock location.Connection
Create and add a fulfillment set to a stock location.
Authentication
Connected account requiredTags
Manage Sales Channels of a Stock LocationMEDUSA_ADMIN_POST_STOCK_LOCATIONS_ID_SALES_CHANNELSManage the sales channels in a stock location by adding or removing them.Connection
Manage the sales channels in a stock location by adding or removing them.
Authentication
Connected account requiredTags
Create Store Credit AccountMEDUSA_ADMIN_POST_STORE_CREDIT_ACCOUNTSCreate a store credit account.Connection
Create a store credit account.
Authentication
Connected account requiredTags
Add Credit to Store Credit AccountMEDUSA_ADMIN_POST_STORE_CREDIT_ACCOUNTS_ID_CREDITAdd credit to a store credit accountConnection
Add credit to a store credit account
Authentication
Connected account requiredTags
Update a StoreMEDUSA_ADMIN_POST_STORES_IDUpdate a store's details.Connection
Update a store's details.
Authentication
Connected account requiredTags
Create Tax RateMEDUSA_ADMIN_POST_TAX_RATESCreate a tax rate.Connection
Create a tax rate.
Authentication
Connected account requiredTags
Update a Tax RateMEDUSA_ADMIN_POST_TAX_RATES_IDUpdate a tax rate's details.Connection
Update a tax rate's details.
Authentication
Connected account requiredTags
Create Tax Rule for a RateMEDUSA_ADMIN_POST_TAX_RATES_ID_RULESCreate a tax rule for a rate.Connection
Create a tax rule for a rate.
Authentication
Connected account requiredTags
Create Tax RegionMEDUSA_ADMIN_POST_TAX_REGIONSCreate a tax region.Connection
Create a tax region.
Authentication
Connected account requiredTags
Update a Tax RegionMEDUSA_ADMIN_POST_TAX_REGIONS_IDUpdate a tax region's details.Connection
Update a tax region's details.
Authentication
Connected account requiredTags
Manage TranslationsMEDUSA_ADMIN_POST_TRANSLATIONS_BATCHManage translations in bulk by creating, updating, or deleting multiple translations in a single request. You can manage translations for various resources such as products, product variants, categories, and more.Connection
Manage translations in bulk by creating, updating, or deleting multiple translations in a single request. You can manage translations for various resources such as products, product variants, categories, and more.
Authentication
Connected account requiredTags
Manage Translation SettingsMEDUSA_ADMIN_POST_TRANSLATIONS_SETTINGS_BATCHCreate, update, or delete multiple translation settings.Connection
Create, update, or delete multiple translation settings.
Authentication
Connected account requiredTags
Upload FilesMEDUSA_ADMIN_POST_UPLOADSUpload files to the configured File Module Provider.Connection
Upload files to the configured File Module Provider.
Authentication
Connected account requiredTags
Get Presigned Upload URLMEDUSA_ADMIN_POST_UPLOADS_PRESIGNED_URLSGet a presigned URL for uploading a file to the configured File Module Provider. The presigned URL can be used to upload files directly to the third-party provider. This only works if your configured provider supports presigned URLs, such as the S3 provider.Connection
Get a presigned URL for uploading a file to the configured File Module Provider. The presigned URL can be used to upload files directly to the third-party provider. This only works if your configured provider supports presigned URLs, such as the S3 provider.
Authentication
Connected account requiredTags
Update a UserMEDUSA_ADMIN_POST_USERS_IDUpdate a user's details.Connection
Update a user's details.
Authentication
Connected account requiredTags
Create View ConfigurationMEDUSA_ADMIN_POST_VIEWS_ENTITY_CONFIGURATIONSCreate a new view configuration for an entity. If `is_system_default` is set to true, the created configuration will be set as the system default for the specified entity. Otherwise, it will be a custom configuration for the admin user.Connection
Create a new view configuration for an entity. If `is_system_default` is set to true, the created configuration will be set as the system default for the specified entity. Otherwise, it will be a custom configuration for the admin user.
Authentication
Connected account requiredTags
Make View Configuration ActiveMEDUSA_ADMIN_POST_VIEWS_ENTITY_CONFIGURATIONS_ACTIVEMake a view configuration active. This will set the given view configuration as the active one for the specified entity for the admin user. An admin user can only set their own configurations as active. If the view configuration ID is `null`, the active view configuration will be cleared, and the `code` or system default view configuration type will be used as the active view.Connection
Make a view configuration active. This will set the given view configuration as the active one for the specified entity for the admin user. An admin user can only set their own configurations as active. If the view configuration ID is `null`, the active view configuration will be cleared, and the `code` or system default view configuration type will be used as the active view.
Authentication
Connected account requiredTags
Update View ConfigurationMEDUSA_ADMIN_POST_VIEWS_ENTITY_CONFIGURATIONS_IDUpdate the view configuration of an entity. An admin user can only update their own configurations.Connection
Update the view configuration of an entity. An admin user can only update their own configurations.
Authentication
Connected account requiredTags
Execute a WorkflowMEDUSA_ADMIN_POST_WORKFLOWS_EXECUTIONS_WORKFLOW_ID_RUNExecute a workflow by its ID.Connection
Execute a workflow by its ID.
Authentication
Connected account requiredTags
Fail a Step in a Workflow's ExecutionMEDUSA_ADMIN_POST_WORKFLOWS_EXECUTIONS_WORKFLOW_ID_STEPS_FAILURESet the status of a step in a workflow's execution as failed. This is useful for long-running workflows.Connection
Set the status of a step in a workflow's execution as failed. This is useful for long-running workflows.
Authentication
Connected account requiredTags
Succeed a Step in a Workflow's ExecutionMEDUSA_ADMIN_POST_WORKFLOWS_EXECUTIONS_WORKFLOW_ID_STEPS_SUCCESSSet the status of a step in a workflow's execution as successful. This is useful for long-running workflows.Connection
Set the status of a step in a workflow's execution as successful. This is useful for long-running workflows.
Authentication
Connected account requiredTags