How to use the @commercetools-frontend/sdk.actions.get function in @commercetools-frontend/sdk

To help you get started, we’ve selected a few @commercetools-frontend/sdk examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github commercetools / merchant-center-application-kit / playground / src / components / state-machines-list-connector / actions.js View on Github external
export const fetchStateMachines = requestOptions =>
  sdkActions.get({
    mcApiProxyTarget: MC_API_PROXY_TARGETS.COMMERCETOOLS_PLATFORM,
    service: 'states',
    options: requestOptions,
  });
github commercetools / merchant-center-application-kit / playground / src / components / state-machines-details / actions.js View on Github external
export const fetchStateMachine = id =>
  sdkActions.get({
    mcApiProxyTarget: MC_API_PROXY_TARGETS.COMMERCETOOLS_PLATFORM,
    service: 'states',
    options: { id },
  });
github commercetools / merchant-center-application-kit / packages / application-shell / src / components / login-sso / login-sso.js View on Github external
getOrganizationByName: name =>
    dispatch(sdkActions.get({ uri: `/sso/organization?name=${name}` })),
});